blob: 0576d7db95e44da937b58ced3c0138f31e9cf4af [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
cristy7e41fe82010-12-04 23:12:08 +00002 Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization
cristy3ed852e2009-09-05 21:47:34 +00003 dedicated to making software imaging solutions freely available.
4
5 You may not use this file except in compliance with the License.
6 obtain a copy of the License at
7
8 http://www.imagemagick.org/script/license.php
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15
16 MagickCore image paint methods.
17*/
18#ifndef _MAGICKCORE_PAINT_H
19#define _MAGICKCORE_PAINT_H
20
21#if defined(__cplusplus) || defined(c_plusplus)
22extern "C" {
23#endif
24
cristy4c08aed2011-07-01 19:47:50 +000025#include "MagickCore/color.h"
26#include "MagickCore/draw.h"
cristy3ed852e2009-09-05 21:47:34 +000027
28extern MagickExport Image
cristy14973ba2011-08-27 23:48:07 +000029 *OilPaintImage(const Image *,const double,const double,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000030
31extern MagickExport MagickBooleanType
cristyd42d9952011-07-08 14:21:50 +000032 FloodfillPaintImage(Image *,const DrawInfo *,const PixelInfo *,const ssize_t,
cristy189e84c2011-08-27 18:08:53 +000033 const ssize_t,const MagickBooleanType,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000034 GradientImage(Image *,const GradientType,const SpreadMethod,
cristy189e84c2011-08-27 18:08:53 +000035 const PixelPacket *,const PixelPacket *,ExceptionInfo *),
cristy4c08aed2011-07-01 19:47:50 +000036 OpaquePaintImage(Image *,const PixelInfo *,const PixelInfo *,
cristy189e84c2011-08-27 18:08:53 +000037 const MagickBooleanType,ExceptionInfo *),
cristy4c08aed2011-07-01 19:47:50 +000038 TransparentPaintImage(Image *,const PixelInfo *,
cristy189e84c2011-08-27 18:08:53 +000039 const Quantum,const MagickBooleanType,ExceptionInfo *),
cristy4c08aed2011-07-01 19:47:50 +000040 TransparentPaintImageChroma(Image *,const PixelInfo *,
cristy189e84c2011-08-27 18:08:53 +000041 const PixelInfo *,const Quantum,const MagickBooleanType,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000042
43#if defined(__cplusplus) || defined(c_plusplus)
44}
45#endif
46
47#endif