Search found 5 matches

by vldvrfc
2011-05-21T13:51:36-07:00
Forum: Users
Topic: [Solved] Get colors of the image edge
Replies: 2
Views: 6909

Re: Get colors of the image edge

Thank you. :D
by vldvrfc
2011-05-21T08:39:44-07:00
Forum: Users
Topic: [Solved] Get colors of the image edge
Replies: 2
Views: 6909

[Solved] Get colors of the image edge

Image

I need 4 colors, which are closest to left, top, right, bottom. (In this image, the colors I need are green, orange, blue, gray.)

Thanks.
by vldvrfc
2011-05-15T20:46:34-07:00
Forum: Users
Topic: [Solved] How to remove all color except 3, and resize canvas
Replies: 7
Views: 22245

Re: How to remove all color except 3 color, and resize Canva

Thanks a lot.

Sorry I forgot to tell the condition:
I don't know the color order, I just know these colors, and the result must be the same order.

but the answers is still usefull for me.
by vldvrfc
2011-05-15T10:18:52-07:00
Forum: Users
Topic: [Solved] How to remove all color except 3, and resize canvas
Replies: 7
Views: 22245

[Solved] How to remove all color except 3, and resize canvas

Hi all. input.png: http://i.imgur.com/Bkwme.png I use: convert input.png ( -clone 0 -fill white +opaque #339966 -transparent white ) ( -clone 0 -fill white +opaque #FFCC00 -transparent white ) ( -clone 0 -fill white +opaque #CCFFCC -transparent white ) -delete 0 -background white -flatten output.png...