I'm playing with very small images and it seems I'm missing something because I'm not getting what I expect. What follows is a simplified example.
I have the following 3-pixel image as a text file (primary.txt):
Code: Select all
# ImageMagick pixel enumeration: 3,1,255,srgb
0,0: (255, 0, 0) #FF0000 red
1,0: ( 0,255, 0) #00FF00 lime
2,0: ( 0, 0,255) #0000FF blue
Code: Select all
# ImageMagick pixel enumeration: 5,1,255,srgb
0,0: (255, 0, 0) #FF0000 red
1,0: (170, 85, 0) #AA5500 srgb(170,85,0)
2,0: ( 0,255, 0) #00FF00 lime
3,0: ( 0, 85,170) #0055AA srgb(0,85,170)
4,0: ( 0, 0,255) #0000FF blue
Code: Select all
# ImageMagick pixel enumeration: 5,1,255,srgb
0,0: (255, 0, 0) #FF0000 red
1,0: (128,128, 0) #808000 olive
2,0: ( 0,255, 0) #00FF00 lime
3,0: ( 0,128,128) #008080 teal
4,0: ( 0, 0,255) #0000FF blue
What am I missing?
P.S. I'm doing all this with ImageMagick 6.8.0-6-Q8 via command line in a Win7 XP1 x64 box.
Thanks in advance,
Antonio