ByteScout Barcode Suite - C# - Add barcode to image with barcode sdk - ByteScout

ByteScout Barcode Suite – C# – Add barcode to image with barcode sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Barcode Suite – C# – Add barcode to image with barcode sdk

How to add barcode to image with barcode sdk in C# and ByteScout Barcode Suite

Learn to code in C# to add barcode to image with barcode sdk with this step-by-step tutorial

We made thousands of pre-made source code pieces for easy implementation in your own programming projects. What is ByteScout Barcode Suite? It 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). It can help you to add barcode to image with barcode sdk in your C# application.

This prolific sample source code in C# for ByteScout Barcode Suite contains various functions and other necessary options you should do calling the API to add barcode to image with barcode sdk. Just copy and paste the code into your C# application’s code and follow the instructions. If you want to use these C# sample examples in one or many applications then they can be used easily.

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 C#.

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 Bytescout.BarCode; namespace AddBarcodeToImage { class Program { static void Main() { // Create new barcode and register it. Barcode barcode = new Barcode(); barcode.RegistrationName = "demo"; barcode.RegistrationKey = "demo"; // Set symbology barcode.Symbology = SymbologyType.PDF417; // Set value barcode.Value = "Sample barcode"; // Place barcode at bottom-right corner of the image barcode.DrawToImage("wikipedia.png", -1, 400, 900, "result.png"); // Open output file in default image viewer System.Diagnostics.Process.Start("result.png"); } } }

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