1IM_SMUDGE(3) Library Functions Manual IM_SMUDGE(3)
2
3
4
6 im_smudge, im_smear - filter and smudge in place
7
9 #include <vips/vips.h>
10 #include <vips/rect.h>
11
12 int
13 im_smudge( im, ix, iy, r )
14 IMAGE *im;
15 int ix, iy;
16 Rect *r;
17
18 int
19 im_smear( im, ix, iy, r )
20 IMAGE *im;
21 int ix, iy;
22 Rect *r;
23
25 im_smudge() performs a low-pass filter of the pels inside rect r. Rect
26 r is clipped against the edges of the image. im_smear() is not very
27 useful.
28
29 Both these functions are `in place,' that is, they write directly to
30 the output image! Be very careful, you can destroy data.
31
33 All functions return 0 on success and -1 on error.
34
36 im_insertplace(3), im_readpoint(3).
37
39 National Gallery, 1992
40
42 J. Cupitt
43
44
45
46 30 October 1992 IM_SMUDGE(3)