I can't wrap my head around 2 problems. I'm using ImageMagick-6.7.4-Q16 on 64bit win7.
1- the commandline below does NOT draw the pixels at different color values, they all seems to be the same black value, and 2- when i load the png into photoshop, i expectedto see 4 channels (rgb and alpha) but it shows one single channel called bitmap (which is prob causing question 1 to occur, my guess). Any ideas? i have a feeling i'm just doing this plain wrong (a condition of being a noob). Thanks for the assistance.
Code: Select all
convert -size 500x1 xc:none -fill RGBA(32,106,111,0.00952381) -draw "point 1,1" -fill RGBA(110,105,110,0.00970874) -draw "point 2,1" -fill RGBA(32,80,97,0.00869565) -draw "point 3,1" -fill RGBA(116,119,97,0.00862069) -draw "point 4,1" -fill RGBA(99,104,46,0.03125) -draw "point 5,1" test.png
Alpay