~ubuntu-branches/ubuntu/intrepid/graphicsmagick/intrepid

« back to all changes in this revision

Viewing changes to magick/fx.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2006-05-06 16:28:08 UTC
  • Revision ID: james.westby@ubuntu.com-20060506162808-vt2ni3r5nytcszms
Tags: upstream-1.1.7
ImportĀ upstreamĀ versionĀ 1.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Copyright (C) 2003 GraphicsMagick Group
 
3
  Copyright (C) 2002 ImageMagick Studio
 
4
 
 
5
  This program is covered by multiple licenses, which are described in
 
6
  Copyright.txt. You should have received a copy of Copyright.txt with this
 
7
  package; otherwise see http://www.graphicsmagick.org/www/Copyright.html.
 
8
 
 
9
  ImageMagick Image FX Methods.
 
10
*/
 
11
#ifndef _MAGICK_FX_H
 
12
#define _MAGICK_FX_H
 
13
 
 
14
#if defined(__cplusplus) || defined(c_plusplus)
 
15
extern "C" {
 
16
#endif  /* defined(__cplusplus) || defined(c_plusplus) */
 
17
 
 
18
extern MagickExport Image
 
19
  *CharcoalImage(const Image *,const double,const double,ExceptionInfo *),
 
20
  *ColorizeImage(const Image *,const char *,const PixelPacket,ExceptionInfo *),
 
21
  *ConvolveImage(const Image *,const unsigned int,const double *,
 
22
     ExceptionInfo *),
 
23
  *ImplodeImage(const Image *,const double,ExceptionInfo *),
 
24
  *MorphImages(const Image *,const unsigned long,ExceptionInfo *),
 
25
  *OilPaintImage(const Image *,const double,ExceptionInfo *),
 
26
  *SteganoImage(const Image *,const Image *,ExceptionInfo *),
 
27
  *StereoImage(const Image *,const Image *,ExceptionInfo *),
 
28
  *SwirlImage(const Image *,double,ExceptionInfo *),
 
29
  *WaveImage(const Image *,const double,const double,ExceptionInfo *);
 
30
 
 
31
extern MagickExport unsigned int
 
32
  SolarizeImage(Image *,const double);
 
33
 
 
34
#if defined(__cplusplus) || defined(c_plusplus)
 
35
}
 
36
#endif /* defined(__cplusplus) || defined(c_plusplus) */
 
37
 
 
38
#endif /* _MAGICK_FX_H */