PHP Function Reference:
Ziin Image Formats:

imagecreatefrom92i

(PHP 5, Ziin Image Formats)
Create a new image from file or URL

Description

resource imagecreatefrom92i ( string $filename ) imagecreatefrom92i() returns an image identifier representing the image obtained from the given filename.

Parameters

filename

Path to the 92I image.

Return Values

Returns an image resource identifier on success, FALSE on errors.

Examples

<?php
$im = @imagecreatefrom92i('test.92i');
if (!$im)
{
echo 'Invalid image supplied';
}
else
{
imagepng($im, 'out.png');
}
imagedestroy($im);