Initializes a new instance of the BarcodeData class with specified symbology and data.
public BarcodeData(
Leadtools.Barcode.BarcodeSymbology symbology,
byte[] data
)
Public Function New( _
ByVal symbology As Leadtools.Barcode.BarcodeSymbology, _
ByVal data() As Byte _
)
public BarcodeData(
Leadtools.Barcode.BarcodeSymbology symbology,
byte[] data
)
function BarcodeData(
symbology ,
data
)
public:
BarcodeData(
Leadtools.Barcode.BarcodeSymbology symbology,
array<byte>^ data
)
symbology
Barcode symbology to use.
data
An array of Byte that specifies the data to use. This value can be null (Nothing in VB).
This constructor initializes the BarcodeData member as follows:
Member | Value |
---|---|
Symbology | symbology |
Bounds | LogicalRectangle.Empty |
RotationAngle | 0 |
BarWidthReduction | 0 |
Byte array inside GetData | data (same reference, the data is not copied) |
Value | ASCII text string representation of data, if this parameter is null, then Value is null too. |
Tag | null (Nothing in Visual Basic) |
To quickly construct a new BarcodeData object with a specific symbology and data as a string value, use BarcodeData(BarcodeSymbology symbology, string value) to construct a default BarcodeData, use BarcodeData().
To create an instance of BarcodeData suitable for writing for a specified symbology, use CreateDefaultBarcodeData.
This example creates a BarcodeData using specified symbology and raw data. Then it writes it to an image.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Forms;
using Leadtools.Barcode;
using Leadtools.ImageProcessing;
public void BarcodeData_FromByteArrayExample()
{
string outFileName = Path.Combine(LEAD_VARS.ImagesDir, @"MyBarcode.tif");
// This is UPC data to save a a string
string originalString = "01234567890";
// We will get it as a byte array to use in the rest of this example
byte[] bytes = Encoding.ASCII.GetBytes(originalString);
// Create a BarcodeData object from this data
BarcodeData data = new BarcodeData(BarcodeSymbology.UPCA, bytes);
data.Bounds = new LogicalRectangle(0, 0, 400, 200, LogicalUnit.Pixel);
// Make sure it is the same
Debug.Assert(data.Value == originalString);
// Write it to an image
BarcodeEngine engine = new BarcodeEngine();
using (RasterCodecs codecs = new RasterCodecs())
{
int resolution = 300;
LeadRect pixels = data.Bounds.ToRectangle(resolution, resolution);
using (RasterImage image = RasterImage.Create(pixels.Width, pixels.Height, 1, resolution, RasterColor.FromKnownColor(RasterKnownColor.White)))
{
engine.Writer.WriteBarcode(image, data, null);
codecs.Save(image, outFileName, RasterImageFormat.Tif, 1);
}
}
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.Forms
Imports Leadtools.Barcode
Imports Leadtools.ImageProcessing
Public Sub BarcodeData_FromByteArrayExample()
Dim outFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "MyBarcode.tif")
' This is UPC data to save a a string
Dim originalString As String = "01234567890"
' We will get it as a byte array to use in the rest of this example
Dim bytes() As Byte = Encoding.ASCII.GetBytes(originalString)
' Create a BarcodeData object from this data
Dim data As New BarcodeData(BarcodeSymbology.UPCA, bytes)
data.Bounds = New LogicalRectangle(0, 0, 400, 200, LogicalUnit.Pixel)
' Make sure it is the same
Debug.Assert(data.Value = originalString)
' Write it to an image
Dim engine As New BarcodeEngine()
Using codecs As New RasterCodecs()
Dim resolution As Integer = 300
Dim pixels As LeadRect = data.Bounds.ToRectangle(resolution, resolution)
Using image As RasterImage = RasterImage.Create(pixels.Width, pixels.Height, 1, resolution, RasterColor.FromKnownColor(RasterKnownColor.White))
engine.Writer.WriteBarcode(image, data, Nothing)
codecs.Save(image, outFileName, RasterImageFormat.Tif, 1)
End Using
End Using
End Sub
Public NotInheritable Class LEAD_VARS
Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Forms;
using Leadtools.Barcode;
using Leadtools.ImageProcessing;
using Leadtools.Examples;
public void BarcodeData_FromByteArrayExample()
{
// This is UPC data to save a a string
string originalString = "01234567890";
// We will get it as a byte array to use in the rest of this example
byte[] bytes = Encoding.UTF8.GetBytes(originalString);
// Create a BarcodeData object from this data
BarcodeData data = new BarcodeData(BarcodeSymbology.UPCA, bytes);
data.Bounds = new LogicalRectangle(0, 0, 400, 200, LogicalUnit.Pixel);
// Make sure it is the same
Debug.Assert(data.Value == originalString);
// Write it to an image
BarcodeEngine engine = new BarcodeEngine();
RasterCodecs codecs = new RasterCodecs();
int resolution = 300;
LeadRect pixels = data.Bounds.ToRectangle(resolution, resolution);
using (RasterImage image = RasterImage.Create(pixels.Width, pixels.Height, 1, resolution, RasterColor.FromKnownColor(RasterKnownColor.White)))
{
engine.Writer.WriteBarcode(image, data, null);
using (SampleImageStream outputStream = new SampleImageStream("MyBarcode.tif"))
{
codecs.Save(image, outputStream, RasterImageFormat.Tif, 1);
}
}
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.Forms
Imports Leadtools.Barcode
Imports Leadtools.ImageProcessing
Public Sub BarcodeData_FromByteArrayExample()
' This is UPC data to save a a string
Dim originalString As String = "01234567890"
' We will get it as a byte array to use in the rest of this example
Dim bytes As Byte() = Encoding.UTF8.GetBytes(originalString)
' Create a BarcodeData object from this data
Dim data As BarcodeData = New BarcodeData(BarcodeSymbology.UPCA, bytes)
data.Bounds = New LogicalRectangle(0, 0, 400, 200, LogicalUnit.Pixel)
' Make sure it is the same
Debug.Assert(data.Value = originalString)
' Write it to an image
Dim engine As BarcodeEngine = New BarcodeEngine()
Dim codecs As RasterCodecs = New RasterCodecs()
Dim resolution As Integer = 300
Dim pixels As LeadRect = data.Bounds.ToRectangle(resolution, resolution)
Using image As RasterImage = RasterImage.Create(pixels.Width, pixels.Height, 1, resolution, RasterColor.FromKnownColor(RasterKnownColor.White))
engine.Writer.WriteBarcode(image, data, Nothing)
Using outputStream As SampleImageStream = New SampleImageStream("MyBarcode.tif")
codecs.Save(image, outputStream, RasterImageFormat.Tif, 1)
End Using
End Using
End Sub
Products |
Support |
Feedback: BarcodeData Constructor(BarcodeSymbology,Byte[]) - Leadtools.Barcode |
Introduction |
Help Version 19.0.2017.6.21
|
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.