This is something very specific and hard to look up but maybe someone out there has had this issue or has some directions to point me into figuring this issue out.
So I have a java application(1.6) that will print out some data that includes a barcode that will be scanned at some point back into the system. In prod this has always worked and never been an issue. But in my local computer for some reason this barcode comes out slightly smaller and cannot be scanned at all. Any ideas?
I have tried copying and pasting the prod server's barcode format onto my local, different versions of java(1.6, 1.7, and 1.8), reformatting the barcode to replicate the prod size. All yield the same results, prod is fine. I'd like to figure this out so I can have testing be smoother for myself and not assume the barcodes work before throwing it into prod(but it always works).
g.setFont(new Font("AdvC39d", Font.PLAIN, 30));
g.drawString("*j" + Format.convertForBarCode1(""+ps.getJobId()) + "v" + Format.convertForBarCode2(""+ps.getVersionId()) + "*", 195, 600);