My company develop an inventory management web-app and part of the required functionality is to offer users to print barcodes from within the web app without the aid of a 3rd party solutions or a client app that bridges between the web and the zebra printer.
My experiments included the following:
Using PDFKit + bwip-js to construct the PDF document and to position the barcode image (of a lossless PNG format) properly inside. While this provided a solid document, the chrome printing dialog scale the image and therefore the barcode was corrupted on print
Taking the same PDF output from step 1 to Adobe reader print dialog yielded a more quality print, but the barcode was positioned differently on the label. In this case I didn't changed the printing settings for scaling and positioning just to chexk how natively Adobe will print it.
I acknowledged from different threads that sending a pure ZPL from a web client to Zebra is virtually not possible unless a 3rd party solution like QZ Tray or Zebra PDF printer (commercial product) are used.
Since we try to support multiple printer brands, and since the quality of the barcode label printed from Adobe Reader is fairly good, I wonder if anyone can vouch this is a viable, quality solution that won't hurt barcode quality and readability across the common barcode printers. And what is the preferred tech stack to achieve that.