CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   Graphics and Multimedia discussions (http://www.codingforums.com/forumdisplay.php?f=32)
-   -   jpeg convert into pdf (http://www.codingforums.com/showthread.php?t=273633)

zztender 09-20-2012 06:10 AM

jpeg convert into pdf
 
how can be convert a jpeg file into pdf witout using pdf converter?

coothead 09-20-2012 10:09 AM

Hi there zztender,

and a warm welcome to these forums. ;)

Just open your image in "Photoshop", or any other good image editor.

Click the "File" tab followed by the "Save as..." option.

From the list of options select PDF - Portable Document Format.

Job done. :D

coothead

sameerbp 10-01-2012 12:41 PM

Great its so simple to convert jpeg to pdf without using a pdf convertor. I had been trying this and found the answer here.

coothead 10-01-2012 12:52 PM

No problem, you're very welcome. ;)
coothead

superwookie 10-04-2012 05:03 PM

Coothead gets thanks for his User Name. It made me laugh.

patryk 10-07-2012 02:42 PM

just to keep this a bit relevent to web development:
simplest way to do that is using 'convert' from ImageMagik.

shell:
Code:

convert input.jpg output.pdf
php:
Code:

shell_exec('convert input.jpg output.pdf')
or using api if you can't execute shell commands
(manual: http://php.net/manual/en/book.imagick.php)

limonfahmi1 10-12-2012 11:38 AM

Thanks for post!
Actually i was seeking such kinds of information.


All times are GMT +1. The time now is 10:08 PM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.