Quote Originally Posted by Kumosan View Post
Oh, really looks like I was in error. Thought it would be possible to feed the printer raw data. But looks like you cannot print what you cannot paint. Maybe you could use the more ugly way to use QProcess to feed your pdf directly to lpr.
Thats right, i should be able to paint data and than print with QPrinter (Poppler-way).

But, there must be another solution.
for example:

QProcess pro;
QStringList arg;

arg<<file.fileName();
pro.execute("explorer", arg).

Works fine, with explorer can i view the pdf file. Logically, there must be a programm wich i can call //Win or Linux.

But wich one?