Please help me test this file
Posted: 2010-06-04T02:49:02-07:00
I'm having trouble thumbnailing some PDFs. Some work fine, some don't.
I'm inclined to think this is a ghostscript version problem, but I want to confirm this before I go to the hassle of update gs on the server.
It would be a great help if somebody could test this on a recent version and tell me whether it works or not.
The following file works:
http://www.previewyoursite.co.uk/xb9test/success.pdf
This one doesn't:
http://www.previewyoursite.co.uk/xb9test/fail.pdf
I'm testing it by calling gs directly (to confirm it's not an IM problem) using the following script:
Sorry for posting this in IM when it's really a GS problem - but I figured that the two are so closely linked that somebody here would be able to help.
The output tells me that the gs version is ESP Ghostscript 815.02 (2006-04-19)
The IM version is 6.2.8
Thanks
Pete
I'm inclined to think this is a ghostscript version problem, but I want to confirm this before I go to the hassle of update gs on the server.
It would be a great help if somebody could test this on a recent version and tell me whether it works or not.
The following file works:
http://www.previewyoursite.co.uk/xb9test/success.pdf
This one doesn't:
http://www.previewyoursite.co.uk/xb9test/fail.pdf
I'm testing it by calling gs directly (to confirm it's not an IM problem) using the following script:
Code: Select all
$source = 'fail.pdf';
$dest = 'fail.jpg';
$command = "gs -sDEVICE=jpeg -sOutputFile=$dest $source";
$response = passthru($command);
echo $command.'<br/>';
echo $response.'<br/>';
The output tells me that the gs version is ESP Ghostscript 815.02 (2006-04-19)
The IM version is 6.2.8
Thanks
Pete