Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
opt
/
php-8.1.16-202303091609
/
share
/
test
/
imagick
/
tests
/
//opt/php-8.1.16-202303091609/share/test/imagick/tests/302_Imagick_claheImage.phpt
--TEST-- Test Imagick, claheImage --SKIPIF-- <?php require_once(dirname(__FILE__) . '/skipif.inc'); checkClassMethods('Imagick', array('claheImage')); ?> --FILE-- <?php function claheImage() { $imagick = new \Imagick(__DIR__ . '/Biter_500.jpg'); $imagick->claheImage( 10, 10, 8, 2 ); // $imagick->writeImage(__DIR__ . '/claheImage_output_image.png'); $imagick->getImageBlob(); } claheImage() ; echo "Ok"; ?> --EXPECTF-- Ok