Free Trial
Web API version
Licensing
Request A Quote
HAVE QUESTIONS OR NEED HELP? SUBMIT THE SUPPORT REQUEST FORM or write email to SUPPORT@BYTESCOUT.COM
QR Code With Image | VB.NET

Module1.vb:
VB
Imports Bytescout.BarCode Module Module1 Sub Main() Dim decorationImageFile As String = ".\logo.png" Dim outputFile As String = ".\barcode.png" Dim barcodeValue As String = "1234567890 abcdefghijklmnopqrstuvwxyz 1234567890 abcdefghijklmnopqrstuvwxyz" ' Create and activate barcode generator instance Using barcode As New Barcode("demo", "demo") ' Set barcode type barcode.Symbology = SymbologyType.QRCode ' Set high QR Code error correction level barcode.Options.QRErrorCorrectionLevel = QRErrorCorrectionLevel.High ' Set barcode value barcode.Value = barcodeValue ' Add decoration image and scale it to 15% of the barcode square barcode.AddDecorationImage(decorationImageFile, 15) ' Save generated barcode barcode.SaveImage(outputFile) Console.WriteLine("Barcode saved to " + outputFile) Console.WriteLine() Console.WriteLine("Press any key...") Console.ReadKey() End Using End Sub End Module