Spire.Barcode is a professional barcode library specially designed for .NET developers (C#, VB.NET, ASP.NET, .NET Core) and Java developers (J2SE and J2EE) to generate, read and scan 1D & 2D barcodes.

Tue May 11, 2021 3:28 pm

I cannot find the property settings.QRCodeLogoImage in Spire.BarCode.dll. The DLL version is: 2.3.0.16040. I am looking to add an image at the center of the QR code.

asalpekar
 
Posts: 2
Joined: Thu May 06, 2021 10:23 pm

Wed May 12, 2021 2:09 am

Hello,

Thanks for your inquiry.
I noticed that you are using the free version of Spire.Barcode. I am sorry that our Free Spire.Barcode does not support adding an image at the center of the QR code currently. I recommend you download the latest Spire.BarCode(Hot Fix) Version:5.1.4 and refer to the following code to test.

Code: Select all
            BarcodeSettings bs = new BarcodeSettings();
            bs.Type = BarCodeType.QRCode;
            bs.Data2D = "12345";
            bs.QRCodeLogoImage = Image.FromFile("Logo.png");
            BarCodeGenerator bg = new BarCodeGenerator(bs);
            bg.GenerateImage().Save("QRCode.png");


If there are any other questions, just feel free to contact us.

Sincerely,
Brian
E-iceblue support team
User avatar

Brian.Li
 
Posts: 1271
Joined: Mon Oct 19, 2020 3:04 am

Wed May 12, 2021 3:46 am

Thanks for the information. Is there a way I can use a trial license to test the functionality?

asalpekar
 
Posts: 2
Joined: Thu May 06, 2021 10:23 pm

Wed May 12, 2021 6:24 am

Hello,

Thanks for your response.
We just sent you a temporary (one month free) license of Spire.Barcode via email to help you evaluate our commercial edition better.
Please check your email and refer to this tutorial to apply the license: How to Apply the License by license key.

Sincerely,
Brian
E-iceblue support team
User avatar

Brian.Li
 
Posts: 1271
Joined: Mon Oct 19, 2020 3:04 am

Return to Spire.BarCode