Robert Valentino Well-Known Member Licensed User Longtime User Nov 22, 2022 #1 in the 2nd post by Erel https://www.b4x.com/android/forum/threads/b4x-qrgenerator-cross-platform-qr-code-generator.93092/ he show an example of logo in QR Code I cannot find the source for this example Does anyone have it
in the 2nd post by Erel https://www.b4x.com/android/forum/threads/b4x-qrgenerator-cross-platform-qr-code-generator.93092/ he show an example of logo in QR Code I cannot find the source for this example Does anyone have it
mcqueccu Well-Known Member Licensed User Longtime User Nov 22, 2022 #2 Example code is in the same thread. Check from post #10, 11 etc Upvote 0
Robert Valentino Well-Known Member Licensed User Longtime User Nov 22, 2022 #3 No it isn't. I've used that AddColors code and passed my logo and my Logo becomes the size of the whole QR Code instead of something small inside the QRCode So something is missing that I am not seeing. I even tried to resize my Logo to 1/3 of the QRCode size Upvote 0
No it isn't. I've used that AddColors code and passed my logo and my Logo becomes the size of the whole QR Code instead of something small inside the QRCode So something is missing that I am not seeing. I even tried to resize my Logo to 1/3 of the QRCode size
teddybear Well-Known Member Licensed User Nov 23, 2022 #4 You should create a logo bmp it is 1/3 QR size,then copy pixel to QR central area. Upvote 0
TILogistic Expert Licensed User Longtime User Nov 23, 2022 #5 see: examples. How to add image/logo at center of a Qr code Sub AppStart (Form1 As Form, Args() As String) MainForm = Form1 MainForm.RootPane.LoadLayout("1") 'Load the layout file. MainForm.Show Dim qr As QRGenerator qr.Initialize(ImageView1.Width) BmpQR = qr.Create("B4X QR Generator!!!") logo =... www.b4x.com Upvote 0
see: examples. How to add image/logo at center of a Qr code Sub AppStart (Form1 As Form, Args() As String) MainForm = Form1 MainForm.RootPane.LoadLayout("1") 'Load the layout file. MainForm.Show Dim qr As QRGenerator qr.Initialize(ImageView1.Width) BmpQR = qr.Create("B4X QR Generator!!!") logo =... www.b4x.com
Robert Valentino Well-Known Member Licensed User Longtime User Nov 23, 2022 #6 Thanks guys. Got it. Upvote 0
mcqueccu Well-Known Member Licensed User Longtime User Nov 23, 2022 #7 Robert Valentino said: Thanks guys. Got it. Click to expand... Great. We are also waiting for your example project Upvote 0
Robert Valentino said: Thanks guys. Got it. Click to expand... Great. We are also waiting for your example project