github.com/kaydxh/golang@v0.0.131/pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/paint.h (about)

     1  /*
     2    Copyright (C) 2003 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    ImageMagick Image Paint Methods.
    11  */
    12  #ifndef _MAGICK_PAINT_H
    13  #define _MAGICK_PAINT_H
    14  
    15  #if defined(__cplusplus) || defined(c_plusplus)
    16  extern "C" {
    17  #endif
    18  
    19  #include "magick/render.h"
    20  
    21  extern MagickExport unsigned int
    22    ColorFloodfillImage(Image *,const DrawInfo *,const PixelPacket,const long,
    23      const long,const PaintMethod),
    24    MatteFloodfillImage(Image *,const PixelPacket,const unsigned int,const long,
    25      const long,const PaintMethod);
    26  
    27  extern MagickExport unsigned int
    28    OpaqueImage(Image *,const PixelPacket,const PixelPacket),
    29    TransparentImage(Image *,const PixelPacket,const unsigned int);
    30  
    31  #if defined(__cplusplus) || defined(c_plusplus)
    32  }
    33  #endif
    34  
    35  #endif
    36  
    37  /*
    38   * Local Variables:
    39   * mode: c
    40   * c-basic-offset: 2
    41   * fill-column: 78
    42   * End:
    43   */