Hello,
we are creating a barcode programmatically like it is described here: https://www.telerik.com/forums/generate-barcode-image-programmatically
The problem is, that the barcode itself is a bit small (width) for our purpose.
Our code looks like this:
var barcode = new RadBarcode();
barcode.Width = 900;
barcode.Height = 150;
barcode.Symbology = new Code39();
barcode.Value = "1890";
barcode.LoadElementTree();
var barcodeImage = barcode.ExportToImage(900, 150);
barcodeImage.Save(@"C:\test.png");
But if you look at the attached image (test.png), it has the correct size alright, but not the barcode itself.
Is there away to give the barcode itself more width?
Kind regards.