Here is the code block which i am using to create barcode
using (Aspose.BarCode.LinearBarCode barImage = new LinearBarCode())
{
barImage.CodeText = e.FieldValue.ToString().Replace(’!’, ‘*’);
barImage.SymbologyType = Symbology.Code128;
barImage.ShowBorder = false;
barImage.Font = new System.Drawing.Font(builder.Font.Name, (float)builder.Font.Size);
barImage.ImageQuality = ImageQualityMode.AntiAlias;
using (System.IO.MemoryStream ms = new System.IO.MemoryStream())
{
barImage.SaveImageAs(ms, System.Drawing.Imaging.ImageFormat.Png);
builder.(ms);
}
}
I am able to generate barcode which i am not able to read/scan. I am using barcode version dll Version=1.2.5.0
We are having license for the same.
Please do the needful asap