blob: 1bd3dabdc1967aa690b689844666ccd93bd848b0 [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"
cristy7ebf5092013-08-29 00:08:15 +000030#define MagickSVNRevision "13098:13106M"
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
cristy5ed9c6e2013-07-14 21:20:31 +000037#define MagickppLibVersionText "7.0.0"
38#define MagickppLibVersionNumber @MAGICKPP_LIB_VERSION_NUMBER@
39#define MagickppLibAddendum "-0"
cristy99dc0362013-09-15 18:32:54 +000040#define MagickppLibInterface 1
41#define MagickppLibMinInterface 1
42#define MagickReleaseDate "2013-09-15"
cristy71f53d52013-04-27 13:33:59 +000043#define MagickChangeDate "20120427"
cristy3ed852e2009-09-05 21:47:34 +000044#define MagickAuthoritativeURL "http://www.imagemagick.org"
cristy03f187e2013-01-24 00:22:19 +000045#define MagickFeatures "DPC HDRI OpenMP"
cristy854c9cf2013-08-10 21:03:06 +000046#define MagickDelegates "bzlib djvu fftw fontconfig freetype jng jp2 jpeg lcms lzma openexr pango png ps tiff webp x xml zlib"
cristydbba8212013-07-19 14:53:50 +000047#define MagickHomeURL "file:///usr/share/doc/ImageMagick-7/index.html"
cristy3ed852e2009-09-05 21:47:34 +000048#if (MAGICKCORE_QUANTUM_DEPTH == 8)
49#define MagickQuantumDepth "Q8"
50#define MagickQuantumRange "255"
51#elif (MAGICKCORE_QUANTUM_DEPTH == 16)
52#define MagickQuantumDepth "Q16"
53#define MagickQuantumRange "65535"
54#elif (MAGICKCORE_QUANTUM_DEPTH == 32)
55#define MagickQuantumDepth "Q32"
56#define MagickQuantumRange "4294967295"
57#elif (MAGICKCORE_QUANTUM_DEPTH == 64)
58#define MagickQuantumDepth "Q64"
cristy9b86f202012-11-28 21:55:35 +000059#define MagickQuantumRange "65535"
cristy3ed852e2009-09-05 21:47:34 +000060#else
61#define MagickQuantumDepth "Q?"
62#define MagickQuantumRange "?"
63#endif
cristyb28d6472009-10-17 20:13:35 +000064#define MagickVersion \
cristy15a88782010-01-31 23:24:49 +000065 MagickPackageName " " MagickLibVersionText MagickLibAddendum " " \
cristyb28d6472009-10-17 20:13:35 +000066 MagickReleaseDate " " MagickQuantumDepth " " MagickAuthoritativeURL
cristy3ed852e2009-09-05 21:47:34 +000067
68extern MagickExport char
69 *GetMagickHomeURL(void);
70
71extern MagickExport const char
72 *GetMagickCopyright(void),
cristy422d5502012-12-22 22:20:57 +000073 *GetMagickDelegates(void),
cristy54a531d2009-10-21 17:58:01 +000074 *GetMagickFeatures(void),
cristy3ed852e2009-09-05 21:47:34 +000075 *GetMagickPackageName(void),
cristy0f82ada2010-05-28 01:54:49 +000076 *GetMagickQuantumDepth(size_t *),
77 *GetMagickQuantumRange(size_t *),
cristy3ed852e2009-09-05 21:47:34 +000078 *GetMagickReleaseDate(void),
cristy0f82ada2010-05-28 01:54:49 +000079 *GetMagickVersion(size_t *);
cristy3ed852e2009-09-05 21:47:34 +000080
cristy4f7a6132012-12-23 00:35:19 +000081extern MagickExport void
82 ListMagickVersion(FILE *);
83
cristy3ed852e2009-09-05 21:47:34 +000084#if defined(__cplusplus) || defined(c_plusplus)
85}
86#endif
87
88#endif