Is there any way to reduce white space width between the bars. I want to create very compact bar code.
Hi Martin,
Hi
When using RM4SCC format, I was trying to create a barcode with compact widht, it appears for this type of barcode, width can not be controlled by xDimension.
Aspose.BarCode.BarCodeBuilder barCode;
barCode = new Aspose.BarCode.BarCodeBuilder();
barCode.AutoSize = false;
barCode.CodeLocation = Aspose.BarCode.CodeLocation.None;
barCode.xDimension = 0.1F;
barCode.ImageWidth = 43F;
barCode.ImageHeight = 10F;
barCode.CodeText = “123456789012345678”;
barCode.SymbologyType = Aspose.BarCode.Symbology.RM4SCC;
string path1 = System.Configuration.ConfigurationManager.AppSettings[“FilePath”];
barCode.Save(path1, ImageFormat.Bmp);
Hi Martin,