0

I'm developing a application that should run on an embedded device. The app should be able to communicate with different printers, without deploying a driver for each.

That's why I figured out, that PostScript or PCL are good options for me.

Since Qt5 does not support PCL or PostScript, I would like to use another library for my exports but wasn't able to find a single library till now. I would also like to know, if there are other standards like PCL or PostScript to use a printer without installing a driver.

SGbo
  • 334
  • 6
  • 20

1 Answers1

1

Qt supports CUPS which sports a flexible driver architecture and supports PostScript, PCL and PDF printers, and many more.

dom0
  • 7,356
  • 3
  • 28
  • 50
  • Thanks! That was what I'm looking for. I'm hoping, that all of my printers are supported! – SGbo Oct 10 '14 at 13:10