hi,
I just download trial version of Aspose Barcode .Net, i create a fist sample by this code:
using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128, "123456789"))
{
Aspose.BarCode.Generation.AutoSizeMode asm = generator.AutoSizeMode;
generator.AutoSizeMode = Aspose.BarCode.Generation.AutoSizeMode.Interpolation;
generator.BarCodeWidth.Pixels = rectBounding.Width;
generator.BarCodeHeight.Pixels = rectBounding.Height;
generator.ForeColor = Color.Black;
generator.CodeTextStyle.Location = CodeLocation.Below;
generator.Margins.Bottom.Pixels = 15;
generator.Margins.Top.Pixels = 15;
}
But no left and right margin for generated barcode. Is it a bug?
There are two classes can use to create barcode: BarcodeBuilder and BarcodeGeneration ? Wich one is the best to create barcode ?
I want to integrate your barcode sdk .net into my project so i hope you can answer my questions in the progress of evaluating its functionalities before buying.
Best regards,