It seems like the quality of the (QR) barcode images - or at least of the caption - varies depending on what operating system is used.
On my WinXP system they look just fine, on a Win7 they look somewhat out-of-focus - but both files are the same size. Image files are attached.
Code snippet:
string caption = “AN 110444”;So…what do I have to do to produce consistent results?
string codetext = “SYSLOGPPS:V:1;T:1;F:1;D0:3;D1:110444;D2:AN;D3: ;D4: ;D5: ;DT:0;DA: ;TS:20110218T124432;;”;
BarCodeBuilder writer = new BarCodeBuilder();
writer.AutoSize = true;
writer.SymbologyType = Aspose.BarCode.Symbology.QR;
writer.CodeText = codetext;
writer.CodeLocation = CodeLocation.None;
Aspose.BarCode.Caption caption_below = new Caption();
caption_below.Text = caption;
caption_below.TextAlign = System.Drawing.StringAlignment.Center;
writer.CaptionBelow = caption_below;
writer.Save(“AsposeBCWTest-QR-Test.bmp”, System.Drawing.Imaging.ImageFormat.Bmp);