Quote:
Originally Posted by flips01
I'm interested. 
(I've been using Skim to do it. Crop then export with annotations.)
|
I use Briss, which does a logical crop that only masks the content in the margins. Unfortunately, the Kobo viewer on the device seems to ignore the masking. This Ghostscript command will permanently remove the margin area:
Code:
gs -sDEVICE=pdfwrite -dUseCropBox -sOutputFile=out.pdf - < in.pdf
Note the hyphen after out.pdf and the "< in.pdf"; ie, tell Ghostscript to read from stdin and then concatenate "in.pdf" onto stdin.
This works for me on my OSX 10.6.8 laptop; haven't tried on newer or earlier versions of OSX, nor on other platforms.