How to add watermark.
Posted: Fri Jun 24, 2022 6:23 am
I want to add a watermark when recording.
Is there any way?
Is there any way?
Support forums for TRichView, ScaleRichView, Report Workshop and RVMedia components
https://richedit.com/forums/
Code: Select all
var
png: TPngImage;
begin
FLogo := TRVMBitmap.Create;
png := TPngImage.Create;
png.LoadFromFile('logo.png');
FLogo.Assign(png);
png.Free;
end;
Code: Select all
procedure TfrmMain.RVCamera1GetImage(Sender: TObject; img: TRVMBitmap);
begin
img.Draw(img.Width - FLogo.Width, 0, FLogo);
end;