Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to crop PDF file using this code. cb will output the needed coordinates for the cropping.

How can efficiently do this for every page in a PDF file?

Did this code, but does not work for every pdf input:

public class CropPages {

public static final String PREFACE = "input.pdf";
public static final String RESULT = "cropped.pdf";


public void addMarginRectangle(String src, String dest)
    throws IOException, DocumentException {
    PdfReader reader = new PdfReader(src);
    PdfReaderContentParser parser = new PdfReaderContentParser(reader);
    PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(RESULT));
    TextMarginFinder finder;
    PdfDictionary pageDict;
    for (int i = 1; i <= reader.getNumberOfPages(); i++) {
        finder = parser.processContent(i, new TextMarginFinder());
        //PdfContentByte cb = stamper.getOverContent(i);
        PdfRectangle rect = new PdfRectangle((finder.getLlx()-5), (finder.getLly()-5), (finder.getUrx()+5), (finder.getUry()+5));
        if (i <= 10){
                 System.out.println(rect);
                 }
        pageDict = reader.getPageN(i);
        pageDict.put(PdfName.CROPBOX, rect);
     }
    stamper.close();
}

public static void main(String[] args) throws IOException, DocumentException {
    new CropPages().addMarginRectangle(PREFACE, RESULT);
}

}

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.