Tagged Questions
5
votes
4answers
195 views
PDF to JPG conversion using PHP
I'm trying to convert PDF to IMG (JPG) with help PHP.
I'm using imagick extension.
this is my code
$fp_pdf = fopen($pdf, 'rb');
$img = new imagick(); // [0] can be used to set page number
...
3
votes
4answers
2k views
Creating two pdf pages with Imagick
Currently i can create PDF files from images in Imagick with this function
$im->setImageFormat("pdf");
$im->writeImage("file.pdf");
And it's possible to fetch multiple pages with imagick like ...
2
votes
2answers
162 views
PDF dimensions vs actual content dimension
I'm currently using php's imagick to convert some PDF to images - This works well for the small detail that the images are 'chopped' during output.
This is due to the difference in information ...
1
vote
1answer
393 views
PHP Imagick PDF to JPEG Problem
I am having this error that comes up when I try to convert certain pdfs into JPEgs
The error message is:
[28-Mar-2011 13:24:02] PHP Fatal error: Uncaught exception '
Stack trace:
#0 ...
0
votes
2answers
311 views
Count pages in PDF file using Imagemagick - PHP
I am using PHP 5 with Apache in my Windows Vista PC. I have Imagemagick already installed and configured. I want to count the total number of pages in a pdf file using imagick.
I fount one solution ...
0
votes
0answers
33 views
Imagick convert image to pdf at top of page
I've tried to convert many images of diferents sizes into single pdf file.
But the lower images are put in bottom of page.
I'm using this commad:
convert -page A4 -monochrome -compress fax *.png ...
0
votes
3answers
287 views
Why is the quality on generated PDFs so low with this code?
I have the following code. It's used to combine various image attachments (and pdfs) into one PDF. For some reason, when I take even a single PDF and put it through the code, the end result comes out ...
0
votes
1answer
190 views
'ImagickException' with message 'unable to open file
'ImagickException' with message 'unable to open file /data/web/myweb.com/sub/7/file:/data/web/myweb.com/sub/7/sites/default/files/logo.png'
Hi,
I got this message when I want to crete PDF file from ...
0
votes
0answers
85 views
PHP Safari PDF to Image Problem
I am trying to use headers and Imagick to display PDFs as an image. I have it working in other browsers except in Safari the image comes with a black background. An example is here and the code the ...