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)){
}
$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!