How to generate (display) PDF417 Truncated barcode using Bytescout BarCode SDK for .NET - ByteScout
Announcement
Our ByteScout SDK products are sunsetting as we focus on expanding new solutions.
Learn More Open modal
Close modal
Announcement Important Update
ByteScout SDK Sunsetting Notice
Our ByteScout SDK products are sunsetting as we focus on our new & improved solutions. Thank you for being part of our journey, and we look forward to supporting you in this next chapter!

How to generate (display) PDF417 Truncated barcode using Bytescout BarCode SDK for .NET

  • Home
  • /
  • Articles
  • /
  • How to generate (display) PDF417 Truncated barcode using Bytescout BarCode SDK for .NET

Output barcode screenshot (PDF417 Truncated 2D symbology barcode type):

PDF417 Truncated sample image

PDF417 Truncated symbology. This symbology is a truncted (right column is missing) or compact version of PDF417 symbology.

Important: you can also use BarCode Windows Forms or Web ImageControl instead. To use the Windows Formscontrol in Visual Studio please open Toolbox and open “Bytescout Software” tab and drag-n-drop “BarCode” control into your WinForms or ASP.NET application (in design mode)

Visual Basic:

Imports Bytescout.BarCode
 
Module Module1
 
Sub Main()
' Create new barcode
Dim barcode As New Barcode()
 
' Set symbology
barcode.Symbology = SymbologyType.PDF417Truncated
 
' Set value
barcode.Value = "this is a test string"
 
' Save barcode to image
barcode.SaveImage("result.png")
 
' Show image in default image viewer
Process.Start("result.png")
End Sub
 
End Module

Visual C#:

using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
using Bytescout.BarCode;

Sample
{
  class Program
  {
    static void Main(string[])
    {
      // Create new barcode
      Barcode barcode = new Barcode();
	  
      // Set symbology
      barcode.Symbology = SymbologyType.PDF417Truncated;

      // Set value
      barcode.Value = "this is a test string";
     
      // Save barcode to image
      barcode.SaveImage("result.png");
	  
	  // Show image in default image viewer
      Process.Start("result.png");
    }
  }
}

Demo how to create PDF417 Truncated barcode

Tutorials:

prev
next