I have a few PDFs that were once created from digitized documents. I don't know what the exact procedure was, but I need to extract these images as they appear on the PDFs.
Each page contains a single image.
I've tried using two techniques to extract the images: a) Using the pdfimages command from the Xpdf toolkit and b) Using the iText library (example).
The problem is that the cropboxes of the PDF are ignored with both techniques: the extracted images are the full images. How can I extract the images cropped exactly as they appear with a PDF reader?
Extra Details
A way to go about this could be to do this in several steps: 1) extract the full images, 2) determine their cropboxes, 3) crop them appropriately.
One can determine the cropboxes easily using iText or the pdfinfo command. This is a sample output from pdfinfo:
$ pdfinfo.exe -box -f 1 -l 999 document.pdf
Creator: FUJITSU fi-5750Cdj
Producer: Adobe Acrobat 6.0 Paper Capture
CreationDate: 08/07/06 08:37:53
ModDate: 09/22/06 18:06:11
Tagged: no
Form: none
Pages: 2
Encrypted: no
Page 1 size: 319.121 x 602.948 pts
Page 2 size: 304.501 x 604.502 pts
Page 1 MediaBox: 0.00 0.00 599.00 1224.00
Page 1 CropBox: 145.59 603.41 464.71 1206.35
Page 1 BleedBox: 145.59 603.41 464.71 1206.35
Page 1 TrimBox: 145.59 603.41 464.71 1206.35
Page 1 ArtBox: 145.59 603.41 464.71 1206.35
Page 2 MediaBox: 0.00 0.00 599.00 1224.00
Page 2 CropBox: 78.75 609.00 383.25 1213.50
Page 2 BleedBox: 78.75 609.00 383.25 1213.50
Page 2 TrimBox: 78.75 609.00 383.25 1213.50
Page 2 ArtBox: 78.75 609.00 383.25 1213.50
File size: 68808 bytes
Optimized: yes
PDF version: 1.5
The units of these values are in points. They can be converted to pixels, in order to crop the images. This would be the cropbox in pixels for the 1st page of the PDF file above:
Width: 319.121*300/72 = 1329.67
Height: 602.94*300/72 = 2512.28
Left: 145.59*300/72 = 606.53
Top: (1224-1206)*300/72 = 73.54
These values are really, really, close! Drawing this rectangle on top of the extracted image, using an image editor, reveals that it's almost the right cropbox. Almost.
In the end, this approach is not reliable for two reasons:
- It assumes the images have 300 DPIs. It's a magic number that may not work for all cases... I'm dealing with a very heterogeous set of PDFs.
- The cropbox is slightly rotated. When the page is seen through a PDF reader one notices that it has a slight rotation when compared with the extracted image (1 or 2 degrees), but I seen no way to get this rotation value from the PDF...