I just have a transparent PNG with star graphic in a solid color, let's say #FF0000;
What can I do to replace or convert to any hex color my user chooses?
I looked on PHP but after trying lot's of code, nothing seems to work? (for almost all of the imagick functions on PHP.net I get a warning, "This function is currently not documented")

On my server I run PHP Version 5.2.5

imagick module version : 2.1.1 ImageMagick version: ImageMagick 6.4.1

GD Version: bundled (2.0.34 compatible)

link|improve this question

79% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Assuming the star graphic is a uniform color, you can use the following function:

function recolorStar($filename, $color) {
    $img = new Imagick($filename);
    $img->colorizeImage($color, 0.0);
    header('content-type: image/png');
    echo $img;
}

$color should be specified with the pound symbol, e.g. "#00FF00".

You can modify the last couple lines if you don't want to output it directly to the browser.

link|improve this answer
Hi thanks for the answer, but it does not work, unfortunately :-( – FFish Jan 27 '11 at 3:38
It doesn't work correctly, or just doesn't work at all? I tested it on my dev machine and it worked fine. – soren121 Jan 27 '11 at 3:42
mmm now it did change the color when I saved in as a PNG24, but no transparency, with a white background. Could I change the color of the background? So I don't need the transparency? cheers – FFish Jan 27 '11 at 3:45
I can use a PNG32 with transparency when I set the $opacity param to 0.0 $img->colorizeImage($color, 0.0); But when I change the red star in for example #CCCCCC I get a mixture or red and CCCCCC – FFish Jan 27 '11 at 4:01
Hey I found it :-) If instead of the red star as the base I use black it all works fine! PNG32 with transparency setting the opacity param to 0.0 Thanks for the help. – FFish Jan 27 '11 at 4:05
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.