anyone know how can i convert bmp to jpg using php?
ve play wif gf function but seem got work out

Recommended Answers

All 5 Replies

In case you don't read all comments on that page, you need to have the GD extension installed.

gd extension cant convert bmp to jpg, only wbmp to jpg

hi

imagejpeg($im,"pic.jpg");

try with this function

Don't know why you would because jpg is a lot worse quality than png. If I were you convert to gif, but that's just me.

Convert to jpg:

$image = ImageCreateFromPNG("yourimage.png");

header("Content-Type: image/jpg");
ImageJpeg($image, "yourpngimage.jpg");
ImageDestroy($image);

Convert to gif:

$image = ImageCreateFromPNG("yourimage.png");

header("Content-Type: image/gif");
ImageJpeg($image, "yourpngimage.gif");
ImageDestroy($image);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.