I am using TDelphiZXingQRCode to generate QRCode in FMX. I have a problem when saving an image to BITMAP: image dimensions are always 29x29 I don't understand how to make a picture 100x100. I would be grateful if you help me. enter image description here
The problem is that QRCodeBitmap.SetSize(QRCode.Rows, QRCode.Columns);
QRCode.Rows and QRCode.Columns is 29
How to resize and trace the value Columns and Rows = 100?
I think, it's around here somewhere (in TDelphiZXingQRCode ) FElements := GenerateQRCode(FData, Ord(FEncoding)); FRows := Length(FElements) + FQuietZone * 2;