PDF417 Columns not working

Hello,

Im evaluating your software so we can determine whether it soots our needs and I am having a problem with creating a PDF417 barcode. I am trying to do a simple test where I am setting the columns property to 6 and the created barcode does not change, it remains as shown in the attached image. The columns only change when I change the rows property. This is the code that I am using to generate the barcode:

Aspose.BarCode.BarCodeBuilder b = new Aspose.BarCode.BarCodeBuilder();
b.SymbologyType = Aspose.BarCode.Symbology.Pdf417;
b.Pdf417CompactionMode = Aspose.BarCode.Pdf417CompactionMode.Text;
b.Pdf417ErrorLevel = Aspose.BarCode.Pdf417ErrorLevel.Level2;
b.Columns = 6;
//b.Rows = 6;
b.CodeText = "TEST.TESTTESTTEST.12345.102354861.USER.070610_094208";
b.Save("C:/Barcode.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);

Just need to see if this is an actual bug or if im doing something wrong. I am using .net 4.0 with the .net 4.0 aspose.barcode.dll version 3.6.

Thanks

Thank you for your post.

Please try the attached beta DLL for this issue. Sorry if any inconvenience.

That worked perfect.

Thank you.