hello dear
following link will help in resize bmp file
opensourceprogrammer.blogspot.com/2 ...
code :
$new_image=imagecreatetruecolor($thum_width,$thum_height)or die('Cannot Initialize new GD image stream');
if($extension=='bmp'){
$image=@imagecreatefromwbmp($source);
}
imagecopyresampled($new_image,$image,0,0,$x,$y,$thum_width,$thum_height,$width,$height);
if($extension=='bmp'){
image2wbmp($new_image,$destination);
}