This commit is contained in:
3x0k1d 2025-05-05 08:29:08 +03:00
parent f932e84e4a
commit 088e250389

View File

@ -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);
?>