Call to undefined method Imagick::roundCorners

php7, ImageMagick-7.0.8-3 生成圓形圖片 會出現(xiàn)這個(gè)錯誤

Call to undefined method Imagick::roundCorners

ImageMagick-6 生成圓形圖片

$image = new Imagick('45_y.png');

$image->setImageFormat('png');

$image->roundCorners($image->getImageWidth() / 2, $image->getImageHeight() / 2);

$image->writeImage( '45_y1.png' );? //保存圖片

$image->destroy();



ImageMagick-7.0.8-3? 生成圓形圖片 需要換種思路


$width = ‘300’;

$height = '300';

$cornerRadius = $long/2;

$image = new Imagick('45_y.png');

$image->setImageFormat('png');

$image->thumbnailImage($width,$height);

$mask = new Imagick();

$mask->newImage($width, $height, new ImagickPixel('transparent'), 'png');

// create the rounded rectangle

$shape = new ImagickDraw();

$shape->setFillColor(new ImagickPixel('black'));

$shape->roundRectangle(0, 0, $width-1, $height-1, $cornerRadius, $cornerRadius);

// draw the rectangle

$mask->drawImage($shape);

// apply mask

$image->compositeImage($mask, Imagick::COMPOSITE_DSTIN, 0, 0);

$mask->writeImage(??'45_y1.png' );

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

友情鏈接更多精彩內(nèi)容