I have a ghostscript command that I use that has been working for a while, and I recently had to increase the DPI to 600 instead of the default 300. This has caused it to push all pixels up to the line right after the previous line of pixels. Here's my example code:
gs -dSAFER -dBATCH -dNOPAUSE -q -sDEVICE=ljetplus -dMediaPosition=0 -r600 -sOutputFile=test.pcl lines.pdf quit.ps
Here's what lines.pdf looks like beforehand:
And here's what test.pcl looks like afterwards in GhostPCL:
I have tried adding -c "<</PageOffset [0 -30]>> setpagedevice"
to my command, but it ignores the y-axis changes I make. Why is it squishing everything to the top, and how do I stop it from doing that while keeping the 600 DPI?