ByteScout Barcode Suite - VB.NET - Read vcard from qr code with barcode reader sdk - ByteScout

ByteScout Barcode Suite – VB.NET – Read vcard from qr code with barcode reader sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Barcode Suite – VB.NET – Read vcard from qr code with barcode reader sdk

How to read vcard from qr code with barcode reader sdk in VB.NET with ByteScout Barcode Suite

If you want to learn more then this tutorial will show how to read vcard from qr code with barcode reader sdk in VB.NET

The sample source codes on this page shows how to read vcard from qr code with barcode reader sdk in VB.NET. Want to read vcard from qr code with barcode reader sdk in your VB.NET app? ByteScout Barcode Suite is designed for it. ByteScout Barcode Suite is the bundle that privides 3 SDK products to generate barcodes (Barcode SDK), read barcodes (Barcode Reaer SDK) and read and write spreadsheets (Spreadsheet SDK).

These VB.NET code samples for VB.NET guide developers to speed up coding of the application when using ByteScout Barcode Suite. This VB.NET sample code is all you need for your app. Just copy and paste the code, add references (if needs to) and you are all set! Applying VB.NET application mostly includes various stages of the software development so even if the functionality works please test it with your data and the production environment.

If you want to try other source code samples then the free trial version of ByteScout Barcode Suite is available for download from our website. Just try other source code samples for VB.NET.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Module1.vb
      
Imports System.IO Imports Bytescout.BarCodeReader Imports Thought.vCards Module Module1 ''' <summary> ''' This example demonstrates reading of QR Code encoded vCard. ''' It uses vCard library by David Pinch: ''' ''' vCard Class Library for .NET (Version 0.4; LGPL license) ''' Copyright (c) 2007-2009 David Pinch ''' http://www.thoughtproject.com/Libraries/vCard/ ''' </summary> Sub Main() ' Create Bytescout.BarCodeReader.Reader instance Using reader As New Reader ' Enable QR Code decoding reader.BarcodeTypesToFind.QRCode = True ' ----------------------------------------------------------------------- ' NOTE: We can read barcodes from specific page to increase performance . ' For sample please refer to "Decoding barcodes from PDF by pages" program. ' ----------------------------------------------------------------------- ' Decode QR Code from image Dim barcodes = reader.ReadFrom("sample_vcard.gif") If barcodes.Length > 0 Then Dim vcardBarcode = barcodes(0) ' Decode vCard information from barcode value Dim stringReader As New StringReader(vcardBarcode.Value) Dim vCard As New vCard(stringReader) ' Display some decoded info: Console.WriteLine("GivenName: " + vCard.GivenName) Console.WriteLine("FamilyName: " + vCard.FamilyName) Console.WriteLine("Organization: " + vCard.Organization) Console.WriteLine("Title: " + vCard.Title) Console.WriteLine("Phone: " & vCard.Phones(0).FullNumber) Console.WriteLine("EmailAddresses: " & vCard.EmailAddresses(0).Address) Console.WriteLine("DeliveryAddress: " & vCard.DeliveryAddresses(0).Street & " " & vCard.DeliveryAddresses(0).City & " " & _ vCard.DeliveryAddresses(0).Region & " " & vCard.DeliveryAddresses(0).PostalCode & " " & vCard.DeliveryAddresses(0).Country) End If End Using Console.WriteLine() Console.WriteLine("Press any key...") Console.ReadKey() End Sub End Module

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Barcode Suite Home Page

Explore ByteScout Barcode Suite Documentation

Explore Samples

Sign Up for ByteScout Barcode Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Barcode Suite Home Page

Explore ByteScout Barcode Suite Documentation

Explore Samples

Sign Up for ByteScout Barcode Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next