Posted by Janwillem Borleffs on 02/25/06 16:32
Mitul wrote:
> I need help for convert bmp image to jpg file. So anyone can help me
> to convert bmp image to jpg image by php's GD library or any ways by
> php. Please help me as soon as possible. Or you can help me how to
> resized bmp file in different dimession other then its actual.
>
Just take the user defined ImageCreateFromBMP function that you will find
between the user contributions on the page: http://www.php.net/imagecreate
and do something as follows:
$res = ImageCreateFromBMP('test.bmp');
imagejpeg($res, 'test.jpg');
JW
Navigation:
[Reply to this message]
|