vote up 1 vote down star
1

Hi all,

How can I convert a single jpg image into 3 different image format gif , png and bmp using PHP?

Pls help

flag

17% accept rate

2 Answers

vote up 5 vote down check

You first create an image object out of your file with imagecreatefromjpeg(). You then dump that object into different formats (using imagegif() for example):

$imageObject = imagecreatefromjpeg($imageFile);
imagegif($imageObject, $imageFile . '.gif');
imagepng($imageObject, $imageFile . '.png');
imagewbmp($imageObject, $imageFile . '.bmp');
link|flag
thanks bro.its working properly. – riad Apr 17 at 11:48
1  
Note that WBMP is not the BMP as you might know it: en.wikipedia.org/wiki/Wbmp – Evert May 17 at 17:23
great answer, exactly what i was lookking for too – Jeff Winkworth Oct 31 at 15:02
vote up 3 vote down

Use libGD — http://www.php.net/manual/en/book.image.php

link|flag
But its a huge library file, Could u pls help me for a perticular one? which code i have to use? – riad Apr 16 at 12:02

Your Answer

Get an OpenID
or

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