1 /*
2   Copyright (C) 2003 - 2009 GraphicsMagick Group
3   Copyright (C) 2002 ImageMagick Studio
4   Copyright 1991-1999 E. I. du Pont de Nemours and Company
5 
6   This program is covered by multiple licenses, which are described in
7   Copyright.txt. You should have received a copy of Copyright.txt with this
8   package; otherwise see http://www.graphicsmagick.org/www/Copyright.html.
9 
10   GraphicsMagick Gradient Image Methods.
11 */
12 #ifndef _MAGICK_GRADIENT_H
13 #define _MAGICK_GRADIENT_H
14 
15 #if defined(__cplusplus) || defined(c_plusplus)
16 extern "C" {
17 #endif
18 
19 /*
20   Include declarations.
21 */
22 #include "magick/image.h"
23 
24 extern MagickExport MagickPassFail
25   GradientImage(Image *,const PixelPacket *,const PixelPacket *);
26 
27 #if defined(__cplusplus) || defined(c_plusplus)
28 }
29 #endif
30 
31 #endif /* _MAGICK_GRADIENT_H */
32 
33 /*
34  * Local Variables:
35  * mode: c
36  * c-basic-offset: 2
37  * fill-column: 78
38  * End:
39  */
40