I have a cross platform (python) application which needs to generate a jpeg preview of the first page of a PDF.
On the mac I am spawning sips. Is there something similarly simple I can do on Windows?
|
3
|
|
|
|
|
|
You can use ImageMagick's convert utility for this, see some examples in http://studio.imagemagick.org/pipermail/magick-users/2002-May/002636.html |
|||
|
|
|
ImageMagick delegates the PDF->bitmap conversion to GhostScript anyway, so here's a command you can use (it's based on the actual command listed by the
where This is good for two reasons:
Other things to consider: with the files I've tested, PNG compresses better than JPEG. If you want to use PNG, change the |
||||
|
|
|
|
||
|
|
|
|
Is the PC likely to have Acrobat installed? I think Acrobat installs a shell extension so previews of the first page of a PDF document appear in Windows Explorer's thumbnail view. You can get thumbnails yourself via the IExtractImage COM API, which you'll need to wrap. VBAccelerator has an example in C# that you could port to Python. |
||
|
|
|
|
There's another article on codeproject, though I wonder how relevant that's to cross-platform python (codeproject is a goldmine of windows-related code). |
||
|
|