Capture data:

a) openoffice.
Stop printer and print text. Output document in Cups queue is perfect (pdf 
data). When I restart the printer, the document is printed awfully. The problem 
seems to come with cups and not with openoffice

b) cups-pdf.
output document in ~/PDF is perfect. Printing this PDF gives a correct document 
(as always).

A workaround for the problem could then be:
- to always print with cups-pdf;
- to write a script something like

#!/bin/bash
for rep in `ls /home`;do
prep=/home/$rep/PDF
if [[ -d $prep ]];then
for file in `ls $prep`;do
lp "$prep/$file" && rm "$prep/$file"
done
fi
done

and to put this file in /etc/cron.d to have it run every minute.

But it's a bit dirty...

Best regards

Olivier Subilia

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/984082

Title:
  Evince produces low-res, pixelated output when printing PDF's

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cups/+bug/984082/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to