blob: 2fee68b742d32810eac1167440bb2328e1c0ed46 [file] [log] [blame]
cristyd04e7bf2012-03-03 19:19:12 +00001/*
Cristy7ce65e72015-12-12 18:03:16 -05002 Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization
cristyd04e7bf2012-03-03 19:19:12 +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 channel methods.
17*/
Cristy83bceaa2016-06-03 20:39:35 -040018#ifndef MAGICKCORE_CHANNEL_H
19#define MAGICKCORE_CHANNEL_H
cristyd04e7bf2012-03-03 19:19:12 +000020
cristy6398ec72013-11-28 02:00:27 +000021#include <MagickCore/image.h>
22
cristyd04e7bf2012-03-03 19:19:12 +000023#if defined(__cplusplus) || defined(c_plusplus)
24extern "C" {
25#endif
26
27extern MagickExport Image
cristy5f257b22012-03-07 00:27:29 +000028 *ChannelFxImage(const Image *,const char *,ExceptionInfo *),
cristy46f354c2012-07-04 13:31:29 +000029 *CombineImages(const Image *,const ColorspaceType,ExceptionInfo *),
cristyfbe800d2012-03-05 01:28:21 +000030 *SeparateImage(const Image *,const ChannelType,ExceptionInfo *),
cristydfdb19e2012-03-21 22:22:24 +000031 *SeparateImages(const Image *,ExceptionInfo *);
cristyfbe800d2012-03-05 01:28:21 +000032
33extern MagickExport MagickBooleanType
34 GetImageAlphaChannel(const Image *),
cristyb15b06c2012-08-28 11:36:48 +000035 SetImageAlphaChannel(Image *,const AlphaChannelOption,ExceptionInfo *);
cristyd04e7bf2012-03-03 19:19:12 +000036
37#if defined(__cplusplus) || defined(c_plusplus)
38}
39#endif
40
41#endif