ByteScout Barcode Generator SDK - C# - Generate vCard QR Code - ByteScout

ByteScout Barcode Generator SDK – C# – Generate vCard QR Code

  • Home
  • /
  • Articles
  • /
  • ByteScout Barcode Generator SDK – C# – Generate vCard QR Code

How to Generate vCard QR Code in C# and ByteScout Barcode SDK

This Code in C# Shows How to Generate vCard QR code with This How-to Tutorial

The documentation is designed to help you to implement the features on your side. Want to generate the vCard QR code in your C# app? ByteScout Barcode SDK is designed for it. ByteScout Barcode SDK is the fully-featured library to generate barcodes. Supports QR Code, Code 39, Code 128, UPC, GS1, GS-128, PDF417, Datamatrix, and many other barcode types. Includes various options for barcode generation to ensure output quality, add barcodes to new or existing PDF files and images.

This code snippet below for ByteScout Barcode SDK works best when you need to quickly generate the vCard QR code in your C# application. In your C# project or application, you may simply copy & paste the code and then run your app! The use of ByteScout Barcode SDK in C# is also explained in the documentation included along with the product.

The trial version of ByteScout Barcode SDK is available for free. Source code samples are included to help you with your C# app.

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

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

Program.cs
      
using System.Diagnostics; using System.Drawing.Imaging; using System.IO; using Bytescout.BarCode; using Thought.vCards; namespace GenerateVCardQRCode { /// <summary> /// This example demonstrates generation 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> class Program { static void Main(string[] args) { // Generate vCard vCard vCard = new vCard(); vCard.GivenName = "Forrest"; vCard.FamilyName = "Gump"; vCard.Organization = "Bubba Gump Shrimp Co."; vCard.Title = "Shrimp Man"; vCard.Phones.Add(new vCardPhone("(111) 555-1212", vCardPhoneTypes.Home)); vCard.EmailAddresses.Add(new vCardEmailAddress("forrestgump@example.com", vCardEmailAddressType.Internet)); vCardDeliveryAddress address = new vCardDeliveryAddress(); address.AddressType = vCardDeliveryAddressTypes.Home; address.Street = "100 Waters Edge"; address.City = "Baytown"; address.Region = "LA"; address.PostalCode = "30314"; address.Country = "United States of America"; vCard.DeliveryAddresses.Add(address); // Save vCard data to string vCardStandardWriter writer = new vCardStandardWriter(); StringWriter stringWriter = new StringWriter(); writer.Write(vCard, stringWriter); // Create Bytescout.Barcode instance using (Barcode barcode = new Barcode()) { // Set barcode type barcode.Symbology = SymbologyType.QRCode; // Set barcode value barcode.Value = stringWriter.ToString(); // Save barcode to image barcode.SaveImage("result.png", ImageFormat.Png); // Open generated barcode image in default associated application Process.Start("result.png"); } } } }

Generate vCard QR Code – Video Tutorial

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Barcode SDK Home Page

Explore ByteScout Barcode SDK Documentation

Explore Samples

Sign Up for ByteScout Barcode SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next