Added colour option to blackandwhite and threshold magic tools. Since the blackandwhite tool is now the same as tint(with the exception that bandw handles tinting black in a better way) the blackandwhite tool was merged into tint.c and blackandwhite.c removed

This commit is contained in:
Andrew Corcoran 2008-07-20 19:46:08 +00:00
parent c54d6b31a7
commit b2e2289622
6 changed files with 157 additions and 364 deletions

View file

@ -46,8 +46,9 @@ $Id$
implied warranty.
Blur ('entire image' mode), Sharpen, Trace Contour, Silhouette,
Snow Flake, Snow Ball, Black & White, Threshold Magic tools
and Jigsaw 3x3 and Jigsaw 5x5 starter images.
Snow Flake, Snow Ball, Black & White, Threshold,
Tint, Noise and Mosaic Magic Tools
Jigsaw 3x3 and Jigsaw 5x5 starter images
by Andrew 'akanewbie' Corcoran <akanewbie@gmail.com>
Contributed as part of Google Summer of Code, 2008.

View file

@ -23,10 +23,11 @@ $Id$
+ Sharpen - Sharpens entire image
+ Trace Contour - Traces the edges of the image, over a white background.
+ Silhouette - Creates an outline of the image, over a black background.
+ Black & White - Removes all color from the image (turns it greyscale).
+ Threshold - Turns image pure black & pure white (no grey or color).
+ Threshold - Turns image pure colour & pure white (no grey or color).
+ Snow Ball - Places random snow balls over the image.
+ Snow Flake - Places random snow flakes over the image.
+ Noise - Adds random noise to the image.
+ Mosaic - Gives the image a mosaic effect.
By Andrew 'akanewbie' Corcoran <akanewbie@gmail.com>
(Part of Tux4Kids' participation in Google Summer of Code 2008)