Do you want a color overlay with TRUE opacity control? Try this:
<?php
class YourImagick extends Imagick
{
public function colorize($color, $alpha = 1)
{
$draw = new ImagickDraw();
$draw->setFillColor($color);
if (is_float($alpha)) {
$draw->setFillAlpha($alpha);
}
$geometry = $this->getImageGeometry();
$width = $geometry['width'];
$height = $geometry['height'];
$draw->rectangle(0, 0, $width, $height);
$this->drawImage($draw);
}
}
?>
How to use:
<?php
$imagick = new YourImagick('example.png');
$imagick->colorize('#ffcc00', 0.35);
header('Content-type: image/png');
echo $source;
?>
Imagick::colorizeImage
(PECL imagick 2.0.0)
Imagick::colorizeImage — 塗りつぶし色と画像を混合する
パラメータ
-
colorize -
色を表す ImagickPixel オブジェクトあるいは文字列。
-
opacity -
不透明度を表す ImagickPixel オブジェクトあるいは文字列。 1.0 は完全に不透明、0.0 は完全に透明であることを表します。
返り値
成功した場合に TRUE を返します。
エラー / 例外
エラー時に ImagickException をスローします。
変更履歴
| バージョン | 説明 |
|---|---|
| 2.1.0 | 色を表す文字列を最初のパラメータとして、 不透明度を表す浮動小数点数値を 2 番目のパラメータとして指定できるようになりました。 これまでのバージョンでは ImagickPixel オブジェクトしか指定できませんでした。 |
php at lfbittencourt dot com ¶
1 year ago
talkol at gmail dot com ¶
1 year ago
When you're using an image with an alpha channel (for example a transparent png), a value of 1.0 will return a completely transparent image, but a value of 1 works just fine.
lsmartinez at gmail dot com ¶
4 years ago
simplest example
<?php
$nombre = '001-4-0043.jpg';
$img = new Imagick($nombre);
$img->negateImage(false);
//$pixblu = new ImagickPixel('#000040');
$img->colorizeImage('#0000b0',1.0);
header('content-type: image/jpeg');
echo $img;
?>
