blob: d74f924f94cd907cf716721b2ceca2296ee366d2 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
Cristyf6ff9ea2016-12-05 09:53:35 -05002 Copyright 1999-2017 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
Cristyf19d4142017-04-24 11:34:30 -04008 https://www.imagemagick.org/script/license.php
cristy3ed852e2009-09-05 21:47:34 +00009
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 annotation methods.
17*/
Cristy83bceaa2016-06-03 20:39:35 -040018#ifndef MAGICKCORE_ANNOTATE_H
19#define MAGICKCORE_ANNOTATE_H
cristy3ed852e2009-09-05 21:47:34 +000020
cristy6398ec72013-11-28 02:00:27 +000021#include "MagickCore/draw.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 MagickBooleanType
cristy5cbc0162011-08-29 00:36:28 +000028 AnnotateImage(Image *,const DrawInfo *,ExceptionInfo *),
29 GetMultilineTypeMetrics(Image *,const DrawInfo *,TypeMetric *,
30 ExceptionInfo *),
31 GetTypeMetrics(Image *,const DrawInfo *,TypeMetric *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000032
cristy5ed838e2010-05-31 00:05:35 +000033extern MagickExport ssize_t
cristya8352fc2010-09-23 01:09:58 +000034 FormatMagickCaption(Image *,DrawInfo *,const MagickBooleanType,TypeMetric *,
cristy5cbc0162011-08-29 00:36:28 +000035 char **,ExceptionInfo *);
cristy5ed838e2010-05-31 00:05:35 +000036
cristy3ed852e2009-09-05 21:47:34 +000037#if defined(__cplusplus) || defined(c_plusplus)
38}
39#endif
40
41#endif