Search found 5 matches
- 2011-05-21T13:51:36-07:00
- Forum: Users
- Topic: [Solved] Get colors of the image edge
- Replies: 2
- Views: 7261
Re: Get colors of the image edge
Thank you.
- 2011-05-21T08:39:44-07:00
- Forum: Users
- Topic: [Solved] Get colors of the image edge
- Replies: 2
- Views: 7261
[Solved] Get colors of the image edge
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.
- 2011-05-16T21:25:11-07:00
- Forum: Users
- Topic: [Solved] How to remove all color except 3, and resize canvas
- Replies: 7
- Views: 23955
Re: How to remove all color except 3 color, and resize Canva
Thank you for your help.
- 2011-05-15T20:46:34-07:00
- Forum: Users
- Topic: [Solved] How to remove all color except 3, and resize canvas
- Replies: 7
- Views: 23955
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.
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.
- 2011-05-15T10:18:52-07:00
- Forum: Users
- Topic: [Solved] How to remove all color except 3, and resize canvas
- Replies: 7
- Views: 23955
[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 ...