diff --git a/checkers/php-imagick.php b/checkers/php-imagick.php index 77ef5d4..b853ee7 100644 --- a/checkers/php-imagick.php +++ b/checkers/php-imagick.php @@ -11,7 +11,6 @@ $pathToImage = "/home/u525748/php84test.ff14wiki.ru/www/styles/bebs.png"; $outputPath = "/home/u525748/php84test.ff14wiki.ru/www/styles/bebs.changed.png"; function imageTricks($pathToImage,$output) { - echo "tset"; $image = new Imagick($pathToImage); $image->blurImage(3, 2); @@ -27,8 +26,6 @@ function imageTricks($pathToImage,$output) { $image->setImageFormat('png'); $image->writeImage($output); - - $image->destroy(); } imageTricks($pathToImage,$outputPath); ?>