QR code support
Hi,
are there any plans to add support of QR codes? If so, in which timeframe can we expect it ?
are there any plans to add support of QR codes? If so, in which timeframe can we expect it ?
Comments
See attach
The Demo-App produced a Memory Leak. ....
I think, the QRCode- object must be free!??? Is this right?
procedure TfrxQRcode.Draw(Canvas: TCanvas; ScaleX, ScaleY, OffsetX, OffsetY: Extended);
var
bmp: tbitmap;
r: TRect;
begin
inherited;
BeginDraw(Canvas, ScaleX, ScaleY, OffsetX, OffsetY);
if Text <> '' then
begin
bmp := TQRCode.GetBitmapImage(Text, FParams.FMargin, FParams.FPixelSize);
Width := bmp.Width * ScaleX;
Height := bmp.Height * ScaleY;
r := Rect(FX, FY, FX + Round(Width), FY + Round(Height));
frxDrawGraphic(Canvas, r, bmp, IsPrinting, True, False, clNone);
bmp.free; // FIX
end;
end;
Thanks for sharing. Product is very good and professional. Just that there is a watermark in each of the generated barcode. Any idea how to remove it ??