Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using csxi to make scanning for documnets as image, but I have to upload pdf files to server. How can I convert image to PDF in php ? or is there any way to make csxi scan documents as PDF not image

share|improve this question
ImageMagick can read and write PDF files, as well as other images. – DCoder Sep 12 '12 at 9:42
Do you have a clear demo for using Imagic?? – palAlaa Sep 12 '12 at 9:50
shell_exec('convert /path/to/input.png /path/to/output.pdf') does the trick if your server is properly configured - Imagick is installed, GhostScript is installed, php is allowed to execute shell commands, etc. – DCoder Sep 12 '12 at 9:55
This command is not allowed on server. – palAlaa Sep 12 '12 at 10:06
Then you should still be able to run an equivalent command through the imagick php extension - open the image file, save it as a pdf, done. – DCoder Sep 12 '12 at 10:07
show 1 more comment

1 Answer

Wrap your image inside HTML and use some HTML to PDF converter like fpdf or mpdf

share|improve this answer
The image is sent to CSXI buffer and sent to php server.. so I cant wrap the image inside the HTML. – palAlaa Sep 12 '12 at 9:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.