(PECL imagick 2 >= 2.3.0, PECL imagick 3)
Imagick::setImageClipMask — Sets image clip mask
此函數(shù)在 Imagick 3.4.4 中被 廢棄,強(qiáng)烈建議不要應(yīng)用此函數(shù)。
Sets image clip mask from another Imagick object. 此方法在Imagick基于ImageMagick 6.3.6以上版本編譯時(shí)可用。
clip_mask
The Imagick object containing the clip mask
成功時(shí)返回 true
。
錯(cuò)誤時(shí)拋出 ImagickException。
示例 #1 Imagick::setImageClipMask()
<?php
function setImageClipMask($imagePath) {
$imagick = new \Imagick();
$imagick->readImage(realpath($imagePath));
$width = $imagick->getImageWidth();
$height = $imagick->getImageHeight();
$clipMask = new \Imagick();
$clipMask->newPseudoImage(
$width,
$height,
"canvas:transparent"
);
$draw = new \ImagickDraw();
$draw->setFillColor('white');
$draw->circle(
$width / 2,
$height / 2,
($width / 2) + ($width / 4),
$height / 2
);
$clipMask->drawImage($draw);
$imagick->setImageClipMask($clipMask);
$imagick->negateImage(false);
$imagick->setFormat("png");
header("Content-Type: image/png");
echo $imagick->getImagesBlob();
}
?>