I need to shift the whole page content of a PDF a certain distance down and to the left when converting it to PCL.
I've already found how to do it with PDF to PDF:
Is there somehing similar for the PCL conversion?
Now I convert with the following command:
gswin32c.exe \
-q \
-dNOPAUSE \
-dBATCH \
-sDEVICE=pxlmono \
-dDuplex=false \
-dTumble=false \
-sPAPERSIZE=a4 \
-dMediaPosition=4 \
-sOutputFile="d:\out.pcl" \
-f"d:\in.pdf" \
-c \
-quit
Is there a possibility to do it directly or do I need to shift the content in a PDF to PDF conversion first (like in the linked question) and then convert it to pcl in a second conversion step?