How do I get the RGB values of the average color of an image, where each value is 0-255? Such as \"255,255,255\"
I run this command to shrink the image down and it
There are two aspects to my answer:
convert sees it..txt format supported by convert. This text format enumerates all pixels of an image, giving first its coordinates ($row,$column:), then its RGB or CMYK values in different formats.Here is a command which covers both aspects in one:
convert cat.png -resize 1x1 out.txt
cat out.txt
To get the output directly in the terminal window, you could use:
convert cat.png -resize 1x1 txt:-
Example output:
convert p4.png -resize 1x1 txt:-
# ImageMagick pixel enumeration: 1,1,255,srgb
0,0: (189,185,184) #BDB9B8 srgb(189,185,184)
You can do the following to parse out just the comma-separated RGB values. It also will not return text color names.
convert cat.png -resize 1x1\! \
-format "%[fx:int(255*r+.5)],%[fx:int(255*g+.5)],%[fx:int(255*b+.5)]" info:-
Output format should look like:
155,51,127
This should work in ImageMagick 6.3.9.1+