imagecreatefrom411
(PHP 5,
Ziin Image Formats)
Create a new image from file or URL
Description
resource imagecreatefrom411 ( string $filename )
imagecreatefrom411() returns an image identifier representing the image obtained from the given filename.
Parameters
filename
Path to the
411 image.
Return Values
Returns an image resource identifier on success, FALSE on errors.
Examples
<?php
$im = @imagecreatefrom411('test.411');
if (!$im)
{
echo 'Invalid image supplied';
}
else
{
imagepng($im, 'out.png');
}
imagedestroy($im);