File: effects.h

package info (click to toggle)
fswebcam 20100622-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 576 kB
  • ctags: 1,702
  • sloc: ansic: 7,518; makefile: 29
file content (23 lines) | stat: -rw-r--r-- 1,024 bytes parent folder | download
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-2010 Philip Heron <phil@sanslogic.co.uk> */
/*                                                            */
/* 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);

#endif