Save an XBM file in PHP
Description
The following code shows how to save an XBM file.
Example
<?php// w ww. j a va 2 s. c om
// Create a blank image and add some text
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
// Save the image
imagexbm($im, 'simpletext.xbm');
// Free up memory
imagedestroy($im);
?>
The code above generates the following result.