summaryrefslogtreecommitdiffstats
path: root/share/extensions/ps2pdf.sh
blob: 3e77ec30a006b6cb77fc918158533542ad2ec609 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

params=`grep "^%%DocumentMedia:" "$1" | head -n 1 | awk '{  if (NF==7) { if ($2!="plain") print "-sPAPERSIZE=" $2; else print "-dDEVICEWIDTHPOINTS=" $3 " -dDEVICEHEIGHTPOINTS=" $4; } }'`

if [ "x${params}x" = "xx" ]
then 
        params=`grep "^%%BoundingBox:" "$1" | head -n 1 | awk '{ print "-dDEVICEWIDTHPOINTS=" $4 " -dDEVICEHEIGHTPOINTS=" $5; }'`
fi

exec ps2pdf $params "$1" - 2> /dev/null