correct name of function.

This commit is contained in:
Danack
2021-11-09 19:48:02 +00:00
parent c78766e031
commit b23eb96ba7
+2 -2
View File
@@ -9,14 +9,14 @@ checkClassMethods('Imagick', array('orderedDitherImage'));
<?php
function claheImage() {
function orderedDitherImage() {
$imagick = new \Imagick(__DIR__ . '/Biter_500.jpg');
$imagick->orderedDitherImage("o3x3,6");
// $imagick->writeImage(__DIR__ . '/claheImage_output_image.png');
$imagick->getImageBlob();
}
claheImage() ;
orderedDitherImage() ;
echo "Ok";
?>
--EXPECTF--