Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
I don't have 6.7.7-10, but may be able to find a solution that does what you want on that version.
But I don't know what you want. icon.png has aliased black letters on a transparent background. The background is transparent black near the letters; otherwise transparent white.
What result do you want? Purple letters on a transparent background, or what?
snibgo wrote:I don't have 6.7.7-10, but may be able to find a solution that does what you want on that version.
But I don't know what you want. icon.png has aliased black letters on a transparent background. The background is transparent black near the letters; otherwise transparent white.
What result do you want? Purple letters on a transparent background, or what?
Exactly! I want purple letters on a transparent background, yes
You cannot trust PS because it may be changing the color profile. You need to be sure you are importing with the same color profile or lack of one. Open the Color Settings panel and be sure you know what is there.
You also have a very strange image. If you do
convert icon.png -alpha off icon_aoff.png
convert icon.png -alpha extract icon_alpha.png
You will see that the base image (aoff) is white with a black patch in the middle.
All the text is in the alpha channel as 8 bit gray.
fmw42 wrote:You cannot trust PS because it may be changing the color profile. You need to be sure you are importing with the same color profile or lack of one. Open the Color Settings panel and be sure you know what is there.
You also have a very strange image. If you do
convert icon.png -alpha off icon_aoff.png
convert icon.png -alpha extract icon_alpha.png
You will see that the base image (aoff) is white with a black patch in the middle.
All the text is in the alpha channel as 8 bit gray.
Well you guys helped me enough - so if this is not possible or you don't wanna waste any more time, I will stay with the fact, that one has to use RGB PNGs.
But if you want to still think about the problem: The output image obviously has another color (profile?)! This image is made for the web and the output image is lighter than it should be (I use Google Chrome - if this makes any difference?)...
tkagerer wrote:This image is made for the web and the output image is lighter than it should be (I use Google Chrome - if this makes any difference?)...
I don't have your old version of IM, or any version of PS, but it might be a gamma problem, aka RGB/sRGB. If so, then sprinkling "-set colorspace sRGB" or "-set colorspace RGB" in conversions might help.
tkagerer wrote:This image is made for the web and the output image is lighter than it should be (I use Google Chrome - if this makes any difference?)...
I don't have your old version of IM, or any version of PS, but it might be a gamma problem, aka RGB/sRGB. If so, then sprinkling "-set colorspace sRGB" or "-set colorspace RGB" in conversions might help.