63 lines
2.0 KiB
C
63 lines
2.0 KiB
C
/* Common functions for interfacing with ImageMagick.
|
|
*
|
|
* 22/12/17 dlemstra
|
|
*/
|
|
|
|
/*
|
|
|
|
This file is part of VIPS.
|
|
|
|
VIPS is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301 USA
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
|
|
|
|
*/
|
|
|
|
#if defined(HAVE_MAGICK) || defined (HAVE_MAGICK7)
|
|
|
|
#ifdef HAVE_MAGICK
|
|
#include <magick/api.h>
|
|
#define MaxPathExtent MaxTextExtent
|
|
#endif /*HAVE_MAGICK*/
|
|
|
|
#ifdef HAVE_MAGICK7
|
|
#include <MagickCore/MagickCore.h>
|
|
#define MaxPathExtent MagickPathExtent
|
|
#endif /*HAVE_MAGICK7*/
|
|
|
|
Image *magick_acquire_image( const ImageInfo *image_info,
|
|
ExceptionInfo *exception );
|
|
void magick_acquire_next_image( const ImageInfo *image_info,
|
|
Image *image, ExceptionInfo *exception );
|
|
int magick_set_image_size( Image *image, const size_t width, const size_t height,
|
|
ExceptionInfo *exception );
|
|
int magick_import_pixels( Image *image, const ssize_t x, const ssize_t y,
|
|
const size_t width, const size_t height, const char *map,
|
|
const StorageType type,const void *pixels, ExceptionInfo *exception );
|
|
void magick_set_property( Image *image, const char *property, const char *value,
|
|
ExceptionInfo *exception );
|
|
|
|
void magick_inherit_exception( ExceptionInfo *exception, Image *image );
|
|
void magick_vips_error( const char *domain, ExceptionInfo *exception );
|
|
|
|
void magick_genesis( void );
|
|
|
|
#endif /*HAVE_MAGICK*/
|