blob: ce457a568d4865546d63265a381b13b8c3b29745 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
cristy45ef08f2012-12-07 13:13:34 +00002 Copyright 1999-2013 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 version methods.
17*/
18#ifndef _MAGICKCORE_VERSION_H
19#define _MAGICKCORE_VERSION_H
20
21#if defined(__cplusplus) || defined(c_plusplus)
22extern "C" {
23#endif
24
25/*
26 Define declarations.
27*/
28#define MagickPackageName "ImageMagick"
cristy45ef08f2012-12-07 13:13:34 +000029#define MagickCopyright "Copyright (C) 1999-2013 ImageMagick Studio LLC"
cristy9e27ba82013-04-12 19:21:07 +000030#define MagickSVNRevision "11804:11814M"
cristy4a3e2152011-07-02 00:59:04 +000031#define MagickLibVersion 0x700
32#define MagickLibVersionText "7.0.0"
cristy37442762013-02-10 21:07:23 +000033#define MagickLibVersionNumber 1,0,0
cristy87a7f072011-07-01 00:08:52 +000034#define MagickLibAddendum "-0"
cristy37442762013-02-10 21:07:23 +000035#define MagickLibInterface 1
36#define MagickLibMinInterface 1
cristy9e27ba82013-04-12 19:21:07 +000037#define MagickReleaseDate "2013-04-12"
cristy74528c82012-10-08 14:07:57 +000038#define MagickChangeDate "20121005"
cristy3ed852e2009-09-05 21:47:34 +000039#define MagickAuthoritativeURL "http://www.imagemagick.org"
cristy03f187e2013-01-24 00:22:19 +000040#define MagickFeatures "DPC HDRI OpenMP"
cristybc7f40f2013-02-09 13:54:12 +000041#define MagickDelegates "bzlib fontconfig freetype jng jp2 jpeg lcms lzma pango png ps tiff x xml zlib"
cristy1e618102013-03-17 14:52:31 +000042#define MagickHomeURL "file:///usr/share/doc/ImageMagick-7/index.html"
cristy3ed852e2009-09-05 21:47:34 +000043#if (MAGICKCORE_QUANTUM_DEPTH == 8)
44#define MagickQuantumDepth "Q8"
45#define MagickQuantumRange "255"
46#elif (MAGICKCORE_QUANTUM_DEPTH == 16)
47#define MagickQuantumDepth "Q16"
48#define MagickQuantumRange "65535"
49#elif (MAGICKCORE_QUANTUM_DEPTH == 32)
50#define MagickQuantumDepth "Q32"
51#define MagickQuantumRange "4294967295"
52#elif (MAGICKCORE_QUANTUM_DEPTH == 64)
53#define MagickQuantumDepth "Q64"
cristy9b86f202012-11-28 21:55:35 +000054#define MagickQuantumRange "65535"
cristy3ed852e2009-09-05 21:47:34 +000055#else
56#define MagickQuantumDepth "Q?"
57#define MagickQuantumRange "?"
58#endif
cristyb28d6472009-10-17 20:13:35 +000059#define MagickVersion \
cristy15a88782010-01-31 23:24:49 +000060 MagickPackageName " " MagickLibVersionText MagickLibAddendum " " \
cristyb28d6472009-10-17 20:13:35 +000061 MagickReleaseDate " " MagickQuantumDepth " " MagickAuthoritativeURL
cristy3ed852e2009-09-05 21:47:34 +000062
63extern MagickExport char
64 *GetMagickHomeURL(void);
65
66extern MagickExport const char
67 *GetMagickCopyright(void),
cristy422d5502012-12-22 22:20:57 +000068 *GetMagickDelegates(void),
cristy54a531d2009-10-21 17:58:01 +000069 *GetMagickFeatures(void),
cristy3ed852e2009-09-05 21:47:34 +000070 *GetMagickPackageName(void),
cristy0f82ada2010-05-28 01:54:49 +000071 *GetMagickQuantumDepth(size_t *),
72 *GetMagickQuantumRange(size_t *),
cristy3ed852e2009-09-05 21:47:34 +000073 *GetMagickReleaseDate(void),
cristy0f82ada2010-05-28 01:54:49 +000074 *GetMagickVersion(size_t *);
cristy3ed852e2009-09-05 21:47:34 +000075
cristy4f7a6132012-12-23 00:35:19 +000076extern MagickExport void
77 ListMagickVersion(FILE *);
78
cristy3ed852e2009-09-05 21:47:34 +000079#if defined(__cplusplus) || defined(c_plusplus)
80}
81#endif
82
83#endif