blob: 3acd0ece4f47eadbd453bb85eb486a7157356602 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
cristyb56bb242014-11-25 17:12:48 +00002 Copyright 1999-2015 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 constitute methods.
17*/
18#ifndef _MAGICKCORE_CONSTITUTE_H
19#define _MAGICKCORE_CONSTITUTE_H
20
cristy6398ec72013-11-28 02:00:27 +000021#include "MagickCore/pixel.h"
22
cristy3ed852e2009-09-05 21:47:34 +000023#if defined(__cplusplus) || defined(c_plusplus)
24extern "C" {
25#endif
26
cristy3ed852e2009-09-05 21:47:34 +000027extern MagickExport Image
cristy5ed838e2010-05-31 00:05:35 +000028 *ConstituteImage(const size_t,const size_t,const char *,const StorageType,
29 const void *,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000030 *PingImage(const ImageInfo *,ExceptionInfo *),
cristy1b58f252012-03-01 01:41:41 +000031 *PingImages(ImageInfo *,const char *,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000032 *ReadImage(const ImageInfo *,ExceptionInfo *),
cristy1b58f252012-03-01 01:41:41 +000033 *ReadImages(ImageInfo *,const char *,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000034 *ReadInlineImage(const ImageInfo *,const char *,ExceptionInfo *);
35
36extern MagickExport MagickBooleanType
cristy6f9e0d32011-08-28 16:32:09 +000037 WriteImage(const ImageInfo *,Image *,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000038 WriteImages(const ImageInfo *,Image *,const char *,ExceptionInfo *);
39
cristy3ed852e2009-09-05 21:47:34 +000040#if defined(__cplusplus) || defined(c_plusplus)
41}
42#endif
43
44#endif