summaryrefslogtreecommitdiffstats
path: root/share/extensions/ps2pdf.sh
blob: 61b6dd146ad15a2201d72b6f7145a4ea4bba8dc1 (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