Related questions
Cropping a PDF using Ghostscript 9.01
I am not a programmer, but would like to learn how to crop a PDF using Ghostscript.
I have installed Ghostscript 9.01 in my machine.
Please guide me step by step process (starting from invoking Ghostscript) to crop a PDF with …
Creating PDF file from UIWebView
-(void)createPDFfromUIView:(UIView*)aView saveToDocumentsWithFileName:(NSString*)aFilename
{
// Creates a mutable data object for updating with binary data, like a byte array
UIWebView *webView = (UIWebView*)aView;
NSString *heightStr = [webView stringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight;"];
int height = [heightStr intValue];
// Get the number …
How to crop PDF margins using pdftk and /MediaBox
I used pdftk to uncompress a PDF and then opened it as a text file.
I want to edit the /MediaBox field, which is in my case
/MediaBox [0 0 612 792]
I would like to reduce the margins, for instance
/MediaBox [100 0 512 792]
Unfortunately it …