Page 1 of 1

Clarify documentation

Posted: 2009-02-06T08:16:00-07:00
by rray
The documentation and examples for this project is great
There is so much it is sometimes difficult to find specifics
Under http://www.imagemagick.org/Usage/color/#floodfill

convert present.gif -bordercolor white -border 1x1 \
-fill red -floodfill +0+0 white \
-shave 1x1 present_floodfill.gif
This will replace any color that is within 5% of 'white' to 'red' that is directly part of the area surrounding the seed pixel 10,10.

Where is the 5% and 10,10 seed pixel specified

Richard

Re: Clarify documentation

Posted: 2009-02-06T11:23:09-07:00
by fmw42
rray wrote:The documentation and examples for this project is great
There is so much it is sometimes difficult to find specifics
Under http://www.imagemagick.org/Usage/color/#floodfill

convert present.gif -bordercolor white -border 1x1 \
-fill red -floodfill +0+0 white \
-shave 1x1 present_floodfill.gif
This will replace any color that is within 5% of 'white' to 'red' that is directly part of the area surrounding the seed pixel 10,10.

Where is the 5% and 10,10 seed pixel specified

Richard
Probably a typo. Probably should be -fuzz 5% -floodfill +10+10 white

Re: Clarify documentation

Posted: 2009-02-08T17:53:07-07:00
by anthony
The example was right the text was wrong...

Update in a couple of days. thanks for letting me know.