Free Trial
Web API version
Licensing
Request A Quote
HAVE QUESTIONS OR NEED HELP? SUBMIT THE SUPPORT REQUEST FORM or write email to SUPPORT@BYTESCOUT.COM
Add Barcode To PDF | C#
Program.cs:
C#
using Bytescout.BarCode; namespace AddBarcodeToPdfDocument { 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.DataMatrix; // Set value barcode.Value = "Sample barcode"; // Place barcode at top-right corner of every document page barcode.DrawToPDF("wikipedia.pdf", -1, 500, 50, "result.pdf"); // Open output file in default PDF viewer System.Diagnostics.Process.Start("result.pdf"); } } }