-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy patheffects.h
24 lines (20 loc) · 1.06 KB
/
effects.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* fswebcam - FireStorm.cx's webcam generator */
/*============================================================*/
/* Copyright (C)2005-2011 Philip Heron <[email protected]> */
/* */
/* This program is distributed under the terms of the GNU */
/* General Public License, version 2. You may use, modify, */
/* and redistribute it under the terms of this license. A */
/* copy should be included with this source. */
#ifndef INC_EFFECTS_H
#define INC_EFFECTS_H
extern gdImage *fx_flip(gdImage *src, char *options);
extern gdImage *fx_crop(gdImage *src, char *options);
extern gdImage *fx_scale(gdImage *src, char *options);
extern gdImage *fx_rotate(gdImage *src, char *options);
extern gdImage *fx_deinterlace(gdImage *src, char *options);
extern gdImage *fx_invert(gdImage *src, char *options);
extern gdImage *fx_blur(gdImage *src, char *options);
extern gdImage *fx_greyscale(gdImage *src, char *options);
extern gdImage *fx_swapchannels(gdImage *src, char *options);
#endif