Hello.
Im trying to make a specific barcode system using a custom-made C# program with Navision.
The problem is, that I need the thin bars to have a with of 1.5pixels???
My solution is to make the bars 3.0pixels and scale the barcode 50% on printing.
Now the question is...
Can I scale the printing from navision?...
Or is there a way I can write a C# program temporarily setting the printer to do this?
0
Comments
Can you use fontsize?
image.SetResolution(###, ###);
This does the trick!
I already tried this, but failed because my mind was too set on the 1.5Pixels-problem.
The width in pixels doesn't change, but the actual width when printing is.
Thank you sooo much.