Pdf417

Represents a Pdf417 barcode.

public class Pdf417 : Barcode
Public Class Pdf417
    Inherits Barcode

Inheritance: ObjectBarcodePdf417

Derived: MacroPdf417

Licensing Info

This class is a DynamicBarcode Creator feature. One of the following is required for non-evaluation usage:

Examples

The following example will Draw a Pdf417 barcode image.

Imports System
Imports ceTe.DynamicBarcode.Creator

Module MyModule

   Sub Main()

   'Create a barcode object.
   Dim barcode As Pdf417 = New Pdf417("Hello World",3)

   'Draw barcode image.
   barcode.Draw("C:\barcode.png", 300, ImageFormat.Png)

   End Sub
End Module
using System;
using ceTe.DynamicBarcode.Creator;

class MyClass
{
    static void Main()
    {
        // Create a barcode object.
        Pdf417 barcode = new Pdf417("Hello World",3);

        // Draw barcode image.
       barcode.Draw(@"C:\barcode.png", 300, ImageFormat.Png);
       
    }
}

Remarks

This class can be used to draw a Pdf417 barcode image.

Constructors

Pdf417(Byte[], Int32)Initializes a new instance of the Pdf417 class.
Pdf417(String, Int32)Initializes a new instance of the Pdf417 class.

Properties

BackColorGets or sets the background color of the barcode.
(Inherited from Barcode)
BarcodeMarginGets or Sets the margins of the barcode.
(Inherited from Barcode)
BarColorGets or sets the bar color of the barcode.
(Inherited from Barcode)
CompactionGets or sets the type of compaction.
CompactPdf417Gets or sets the Compact Pdf417.
ErrorCorrectionLevelGets or sets the error correction level for the PDF417 barcode.
ModuleSizeRatioGets or sets the ModuleSizeRatio of barcode. This is the ratio of the height and the width of one module in barcode.
UnitGets or sets the unit of the barcode.
(Inherited from Barcode)
XDimensionGets or sets the XDimension of the barcode.
(Inherited from Barcode)

Methods

Draw(Single, ImageFormat)Draw barcode image.
(Inherited from Barcode)
Draw(Single, Single, ImageFormat)Draw barcode image.
(Inherited from Barcode)
Draw(String, Single, ImageFormat)Draw barcode image.
(Inherited from Barcode)
Draw(String, Single, Single, ImageFormat)Draw barcode image.
(Inherited from Barcode)
Equals(Object)Determines whether the specified Object is equal to the current Object .
(Inherited from Object)
GetHashCode()Serves as a hash function for a particular type.
(Inherited from Object)
GetRecommendedQuietZone(Single, Single)Gets the recommanded quietzone of the barcode.
(Inherited from Barcode)
GetRequiredSize(Single, Single)Returns the size required to display the full barcode.
(Inherited from Barcode)
GetType()Gets the Type of the current instance.
(Inherited from Object)
ToString()Returns a String that represents the current Object .
(Inherited from Object)

See Also

ceTe.DynamicBarcode.Creator

In this topic