FPS option part 2
[fswebcam.git] / effects.h
blob6fbffe780a4ab85cc26067e42942d5223f68a178
1 /* fswebcam - FireStorm.cx's webcam generator */
2 /*===========================================================*/
3 /* Copyright (C)2005 Philip Heron <phil@firestorm.cx> */
4 /* */
5 /* This program is distributed under the terms of the GNU */
6 /* General Public License, version 2. You may use, modify, */
7 /* and redistribute it under the terms of this license. A */
8 /* copy should be included with this source. */
10 #ifndef INC_EFFECTS_H
11 #define INC_EFFECTS_H
13 extern gdImage *fx_flip(gdImage *src, char *options);
14 extern gdImage *fx_crop(gdImage *src, char *options);
15 extern gdImage *fx_scale(gdImage *src, char *options);
16 extern gdImage *fx_rotate(gdImage *src, char *options);
17 extern gdImage *fx_deinterlace(gdImage *src, char *options);
18 extern gdImage *fx_invert(gdImage *src, char *options);
19 extern gdImage *fx_blur(gdImage *src, char *options);
20 extern gdImage *fx_greyscale(gdImage *src, char *options);
22 #endif