%PDF- %PDF-
Direktori : /opt/cpanel/ea-php83/root/usr/share/tests/pecl/imagick/tests/ |
Current File : //opt/cpanel/ea-php83/root/usr/share/tests/pecl/imagick/tests/330_Imagick_newImage.phpt |
--TEST-- Test Imagick, newImage --SKIPIF-- <?php require_once(dirname(__FILE__) . '/skipif.inc'); ?> --FILE-- <?php $image = new Imagick(); $image->newImage(100, 100, new ImagickPixel('red'), 'png'); // Image format case changed at some point in IM echo strtolower($image->getImageFormat()); echo "\n"; $image = new Imagick(); $image->newImage(100, 100, 'blue', null); try { $image->getImageFormat(); echo "Failed to throw exception"; } catch (ImagickException $ie) { echo $ie->getMessage() . "\n"; } echo "Ok"; ?> --EXPECTF-- png Image has no format Ok