Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zebra EPL no dithering option #6047

Open
petec81 opened this issue Jul 11, 2022 · 1 comment
Open

Zebra EPL no dithering option #6047

petec81 opened this issue Jul 11, 2022 · 1 comment

Comments

@petec81
Copy link

petec81 commented Jul 11, 2022

Im using CUPS with PDF and zebra barcode printers. I have noticed that the printout comes with wiggly lines on the barcode. when i use a windows driver i have the option to turn the output to strict B/W so the issue goes away. I cant find something like that in cups. Any idea how this can be accomplished?

@lukepfarrar
Copy link

lukepfarrar commented Aug 1, 2022

I had the same problem which was caused by the mandatory anti-aliasing in the pdftoraster cups-filter. See OpenPrinting/cups-filters#129

Setting to false (below) and rebuilding the filter sorted it for me. It needs to be optional. I have yet to explore https://github.com/michaelrsweet/lprint

  • pr.set_render_hint(poppler::page_renderer::antialiasing, true);
  • pr.set_render_hint(poppler::page_renderer::text_antialiasing, true);
  • pr.set_render_hint(poppler::page_renderer::antialiasing, false);
  • pr.set_render_hint(poppler::page_renderer::text_antialiasing, false);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants