PHP GD xpm


 

PHP GD xpm

This example shows how to get xpm of an image in php gd.

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!

Ads