PDF_to_JPG


Very simple DOS command line program to split pdf to separate jpegs. 
Resulting jpegs will be in PDF_to_JPG_files folder and will have names pageXXXX.jpg, where XXXX starts from 0000.

The main feature - no recalculations of jpeg, ie pdf is used as container for jpegs (see JPG_to_PDF project).
The most obvious usage - to be associated with button in some file manager.



Switches:
/NOASK - press Enter or 1 for normal and warning questions.



Example:
Let I have My_cat.pdf with 10 pages.

p2j My_cat.pdf

I will get PDF_to_JPG_files folder with page0000.jpg - page0009.jpg files. 



Literature and compiler 

1. PDF structure
http://www.adobe.com/devnet/pdf/pdf_reference.html

2. JPEG structure (only dimensions, bits per pixel and colour required)
various fragments from Internet

3. C compiler
http://www.digitalmars.com/



Project address
http://sourceforge.net/projects/pdftojpg/