Last change
on this file since 2694 was
2694,
checked in by Sam Hocevar, 15 years ago
|
- context.c: implement various dithering commands and Gaussian blur.
- pipi.c: add "--blur" and "--dither" commandline options.
- blur.c dither.c: remove these examples, pipi.c works a lot better:
pipi src.png --blur 10 dest.png
pipi src.png --dither dbs dest.png
(and of course combinations are possible)
|
File size:
364 bytes
|
Line | |
---|
1 | # $Id$ |
---|
2 | |
---|
3 | AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/pipi |
---|
4 | |
---|
5 | bin_PROGRAMS = edd img2rubik sharpen floodfill |
---|
6 | |
---|
7 | edd_SOURCES = edd.c |
---|
8 | edd_LDADD = ../pipi/libpipi.la |
---|
9 | |
---|
10 | img2rubik_SOURCES = img2rubik.c |
---|
11 | img2rubik_LDADD = ../pipi/libpipi.la |
---|
12 | |
---|
13 | sharpen_SOURCES = sharpen.c |
---|
14 | sharpen_LDADD = ../pipi/libpipi.la |
---|
15 | |
---|
16 | floodfill_SOURCES = floodfill.c |
---|
17 | floodfill_LDADD = ../pipi/libpipi.la |
---|
18 | |
---|
Note: See
TracBrowser
for help on using the repository browser.