paint.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. Copyright 1999 ImageMagick Studio LLC, a non-profit organization
  3. dedicated to making software imaging solutions freely available.
  4. You may not use this file except in compliance with the License. You may
  5. obtain a copy of the License at
  6. https://imagemagick.org/script/license.php
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. MagickCore image paint methods.
  13. */
  14. #ifndef MAGICKCORE_PAINT_H
  15. #define MAGICKCORE_PAINT_H
  16. #include "magick/color.h"
  17. #include "magick/draw.h"
  18. #if defined(__cplusplus) || defined(c_plusplus)
  19. extern "C" {
  20. #endif
  21. extern MagickExport Image
  22. *OilPaintImage(const Image *,const double,ExceptionInfo *);
  23. extern MagickExport MagickBooleanType
  24. FloodfillPaintImage(Image *,const ChannelType,const DrawInfo *,
  25. const MagickPixelPacket *,const ssize_t,const ssize_t,
  26. const MagickBooleanType),
  27. GradientImage(Image *,const GradientType,const SpreadMethod,
  28. const PixelPacket *,const PixelPacket *),
  29. OpaquePaintImage(Image *,const MagickPixelPacket *,const MagickPixelPacket *,
  30. const MagickBooleanType),
  31. OpaquePaintImageChannel(Image *,const ChannelType,const MagickPixelPacket *,
  32. const MagickPixelPacket *,const MagickBooleanType),
  33. TransparentPaintImage(Image *,const MagickPixelPacket *,
  34. const Quantum,const MagickBooleanType),
  35. TransparentPaintImageChroma(Image *,const MagickPixelPacket *,
  36. const MagickPixelPacket *,const Quantum,const MagickBooleanType);
  37. #if defined(__cplusplus) || defined(c_plusplus)
  38. }
  39. #endif
  40. #endif