I try to use barcodeControl to print it on label.
I use DpiX and DpiY both 305 for high quality.
The output label in the printer is excellent! But the form size does not match to the barcode itself.
If I use DpiX and DpiY 96 it seems OK on the form but with low quality when I print
There is an option to force the size of it?
X and Y and Height and Width does not help me very much..
I attached :
* My sample code
* My output when I run the program
* My control before I compiled
- Code: Select all
barCodeControl1.Data = "MC0511L4";
barCodeControl1.Data2D = "MC0511L4";
barCodeControl1.Type = BarCodeType.Code39;
barCodeControl1.TextFont = new System.Drawing.Font("Arial", 10, System.Drawing.FontStyle.Regular);
barCodeControl1.BarHeight = 10;
barCodeControl1.DpiX = 305;
barCodeControl1.DpiY = 305;
barCodeControl1.ShowText = true;
barCodeControl1.ShowCheckSumChar = false;
barCodeControl1.ForeColor = System.Drawing.Color.FromName("Black");
barCodeControl1.ShowTextOnBottom = true;
Thanks