|
|
|
|
|
|
|
How to create TIFF barcodes using C# or VB.NET and Barcode Professional for
Windows Forms
Technologies used
-
Neodynamic Barcode Professional 3.0 for Windows Forms
-
Microsoft .NET Framework (all versions)
|
Creating TIFF (Tagged Image File Format)
barcodes using C# or VB.NET and Barcode Professional for Windows Forms is
a very simple task. In the following lines we'll describe some common
scenarios about TIFF barcodes generation.
-
How to create and save a TIFF barcode image at a given resolution
Use the overloaded Save() method that Barcode
Professional for Windows Forms features.
Example: You want to encode the data 1234567890 in Code
128 and then save the barcode image in TIFF format at 300DPI
-
How to create and save a Monochrome (Black and White 1 bit per pixel) TIFF barcode image at a given resolution
Based on the previous scenario, just specify the Monochrome property that Barcode Professional for Windows Forms features.
NOTE Keep in mind that generating monochrome images (Black and White 1 bit per pixel format) is a very expensive task in terms of CPU time as well as memory usage.
-
How to get a binary representation of a TIFF barcode image at a given resolution
Use the overloaded GetBarcodeImage() method that Barcode Professional for Windows Forms features.
Example: You want to encode the data 1234567890 in Code 128 and then get a binary representation of the barcode image in TIFF format at 300DPI
-
How to get a Base64 representation of a TIFF barcode image at a given resolution
Use the overloaded GetBarcodeImage() method that Barcode Professional for Windows Forms features in conjunction with the .NET Convert class.
Example: Based on the previous example, the following code creates a Base64 string representation of the barcode image
If you need more information or assistance, please contact our
.
|
|
|
|
|
|
|