I use PHP and Imagick to change the color of transparent PNG. PNG image - a simple form with a transparent background.
I use the colorizeImage function to change the color.
$img = new Imagick("shape.png"); $img->colorizeImage("#99ccff",0.0);
#99ccff problem that Imagick shows a dark version of my HEX code ( #99ccff )?
Is there a way to get the exact color ( #99ccff )?
(my PNG is PNG 32 - and the shape is black)

pelelive
source share