Home Tutorial Php Phpgd PHP GD xpm

 
 

PHP GD xpm
Posted on: November 11, 2009 at 12:00 AM
This example shows how to get xpm of an image in php gd.

<?php

if(!(imagetypes() & IMG_XPM))

{

die('Support for xpm was not found!');

}

$xpm = imagecreatefromxpm('./example.xpm');

imagejpeg($im, './example.jpg', 100);

imagedestroy($im);

?>

After running the program you will get the following output

OUTPUT :Support for xpm was not found!

Related Tags for PHP GD xpm:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.