Comment 19 for bug 166678

Revision history for this message
raboof (arnouten) wrote :

An easier workaround by printing from the commandline using imagemagick:

  convert -density 200 -resize 80% -rotate 90 mysvg.svg ps:- | lpr

the '-density' is needed to get a good resolution, the '-resize' is needed because convert just assumes 1px=1point, but svg uses 80 pixels-per-inch and ps uses 72 points-per-inch.