Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

our website has a certification image created by PHP GD, and I can print and watch it on a web page. But I couldn't make it a downloadable PDF file. Is there a way I can do that?

share|improve this question
1  
What you want is to embed it into a PDF, not converting it into one. – Tom Sep 16 '11 at 20:06

2 Answers

You can first save the image somewhere and then use the FPDF lib to write it in a PDF file

share|improve this answer
How would you do that ? – sun Oct 24 '12 at 16:45

you could use imagick to do this.. the below command does the trick if your server is properly configured - Imagick is installed, GhostScript is installed, php is allowed to execute shell commands, etc

 shell_exec('convert /path/to/input.png /path/to/output.pdf')
share|improve this answer

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.