Search found 3 matches

by cubancigar11
2014-06-07T12:17:46-07:00
Forum: Users
Topic: [SOLVED] Getting complementary color from a given color
Replies: 4
Views: 4617

Re: [SOLVED] Getting complementary color from a given color

Thanks! That does it!

Code: Select all

% convert xc:'#004d09' -modulate 100,100,0 -depth 8 txt:
# ImageMagick pixel enumeration: 1,1,255,srgb
0,0: ( 77,  0, 68)  #4D0044  srgb(77,0,68)
by cubancigar11
2014-06-07T09:10:03-07:00
Forum: Users
Topic: [SOLVED] Getting complementary color from a given color
Replies: 4
Views: 4617

Re: Getting complementary color from a given color

Thanks. I am assuming there is no way to print it in #rrggbb format instead of #rrrrggggbbbb. But that is not a problem. Thanks again.
by cubancigar11
2014-06-07T03:40:22-07:00
Forum: Users
Topic: [SOLVED] Getting complementary color from a given color
Replies: 4
Views: 4617

[SOLVED] Getting complementary color from a given color

Hi! I am trying to find the two colors from an image: the dominant one, and its complementary. From http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=12878 , I am able to get the dominant color using following command: convert img.png -colors 16 -depth 8 -format "%c" histogram:info ...