Current Path : /usr/opt/php72/share/pear/test/imagick/tests/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/opt/php72/share/pear/test/imagick/tests/246_antialias_image.phpt |
--TEST-- Test pseudo formats --SKIPIF-- <?php require_once(dirname(__FILE__) . '/skipif.inc'); ?> --FILE-- <?php $im = new Imagick(); $im->newPseudoImage(0, 0, "magick:logo"); //On by default var_export($im->getAntiAlias()); echo PHP_EOL; //Turn off $im->setAntiAlias(false); var_export($im->getAntiAlias()); echo PHP_EOL; //Turn back on $im->setAntiAlias(true); var_export($im->getAntiAlias()); echo PHP_EOL; ?> --EXPECTF-- true false true