(Информация о версии неизвестна, возможно, только в SVN)
Imagick::transparentPaintImage — Paints pixels transparent
Paints pixels matching the target color transparent. Этот метод доступен, если Imagick был скомпилирован с версией ImageMagick 6.3.8 или старше.
target
The target color to paint
alpha
Уровень прозрачности: 1.0 полностью непрозрачный, тогда как 0.0 полностью прозрачен.
fuzz
Мера округления (fuzz). Для примера, установите значение fuzz в 10 и красный цвет с интенсивностью 100 и 102 будет интерпретироваться как один и тот же цвет.
invert
If TRUE
paints any pixel that does not match the target color.
В случае успешной работы возвращает TRUE
.
Пример #1 Imagick::transparentPaintImage()
<?php
function transparentPaintImage($color, $alpha, $fuzz) {
$imagick = new \Imagick(realpath("images/BlueScreen.jpg"));
//Need to be in a format that supports transparency
$imagick->setimageformat('png');
$imagick->transparentPaintImage(
$color, $alpha, $fuzz * \Imagick::getQuantum(), false
);
//Not required, but helps tidy up left over pixels
$imagick->despeckleimage();
header("Content-Type: image/png");
echo $imagick->getImageBlob();
}
?>