Barcode Xpress for .NET Core v13.9 - Updated
Write a PDF417 Barcode
Developer Guide > How To > Create a Barcode > Create a 2D Barcode > Write a PDF417 Barcode

Use the code example below as a guideline for writing PDF417 barcodes.

C# - Basic steps for writing PDF417 barcodes using Accusoft.BarcodeXpress.NetCore

using (BarcodeXpress bx = new BarcodeXpress("."))
using (WriterPDF417 pdf417Writer = new WriterPDF417(bx))
{
    // Set the text value
    pdf417Writer.BarcodeValue = "PDF417 Value";

    using (Bitmap bitmap = pdf417Writer.CreateBitmap())
    {
        bitmap.Save("testfile.bmp");
    }
}
Is this page helpful?
Yes No
Thanks for your feedback.