MagickWand
6.9.9
Convert, Edit, Or Compose Bitmap Images
studio.h
Go to the documentation of this file.
1
/*
2
Copyright 1999-2018 ImageMagick Studio LLC, a non-profit organization
3
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
https://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
MagickWand private application programming interface declarations.
17
*/
18
#ifndef MAGICKWAND_STUDIO_H
19
#define MAGICKWAND_STUDIO_H
20
21
#if defined(__cplusplus) || defined(c_plusplus)
22
extern
"C"
{
23
#endif
24
25
#if defined(WIN32) || defined(WIN64)
26
# define MAGICKWAND_WINDOWS_SUPPORT
27
#else
28
# define MAGICKWAND_POSIX_SUPPORT
29
#endif
30
31
#define MAGICKWAND_IMPLEMENTATION 1
32
33
#if !defined(MAGICKWAND_CONFIG_H)
34
# define MAGICKWAND_CONFIG_H
35
# if !defined(vms) && !defined(macintosh)
36
# include "magick/magick-config.h"
37
# else
38
# include "magick-config.h"
39
# endif
40
#if defined(MAGICKCORE__FILE_OFFSET_BITS) && !defined(_FILE_OFFSET_BITS)
41
# define _FILE_OFFSET_BITS MAGICKCORE__FILE_OFFSET_BITS
42
#endif
43
#if defined(_magickcore_const) && !defined(const)
44
# define const _magickcore_const
45
#endif
46
#if defined(_magickcore_inline) && !defined(inline)
47
# define inline _magickcore_inline
48
#endif
49
# if defined(__cplusplus) || defined(c_plusplus)
50
# undef inline
51
# endif
52
#endif
53
54
#if !defined(const)
55
# define STDC
56
#endif
57
58
#if defined(__cplusplus) || defined(c_plusplus)
59
# define storage_class c_class
60
#else
61
# define storage_class class
62
#endif
63
64
#include <stdarg.h>
65
#include <stdio.h>
66
#if defined(MAGICKCORE_HAVE_SYS_STAT_H)
67
# include <sys/stat.h>
68
#endif
69
#if defined(MAGICKCORE_STDC_HEADERS)
70
# include <stdlib.h>
71
# include <stddef.h>
72
#else
73
# if defined(MAGICKCORE_HAVE_STDLIB_H)
74
# include <stdlib.h>
75
# endif
76
#endif
77
#if !defined(magick_restrict)
78
# if !defined(_magickcore_restrict)
79
# define magick_restrict restrict
80
# else
81
# define magick_restrict _magickcore_restrict
82
# endif
83
#endif
84
#if defined(MAGICKCORE_HAVE_STRING_H)
85
# if !defined(STDC_HEADERS) && defined(MAGICKCORE_HAVE_MEMORY_H)
86
# include <memory.h>
87
# endif
88
# include <string.h>
89
#endif
90
#if defined(MAGICKCORE_HAVE_STRINGS_H)
91
# include <strings.h>
92
#endif
93
#if defined(MAGICKCORE_HAVE_INTTYPES_H)
94
# include <inttypes.h>
95
#endif
96
#if defined(MAGICKCORE_HAVE_STDINT_H)
97
# include <stdint.h>
98
#endif
99
#if defined(MAGICKCORE_HAVE_UNISTD_H)
100
# include <unistd.h>
101
#endif
102
#if defined(MAGICKWAND_WINDOWS_SUPPORT) && defined(_DEBUG)
103
#define _CRTDBG_MAP_ALLOC
104
#endif
105
106
#if defined(MAGICKWAND_WINDOWS_SUPPORT) && defined(_DEBUG)
107
#define _CRTDBG_MAP_ALLOC
108
#endif
109
#if defined(MAGICKWAND_WINDOWS_SUPPORT)
110
# include <direct.h>
111
# if !defined(MAGICKCORE_HAVE_STRERROR)
112
# define HAVE_STRERROR
113
# endif
114
#endif
115
116
#include <ctype.h>
117
#include <locale.h>
118
#include <errno.h>
119
#include <fcntl.h>
120
#include <math.h>
121
#include <time.h>
122
#include <limits.h>
123
#include <signal.h>
124
#include <assert.h>
125
126
#if defined(MAGICKCORE_HAVE_XLOCALE_H)
127
# include <xlocale.h>
128
#endif
129
#if defined(MAGICKCORE_THREAD_SUPPORT)
130
# include <pthread.h>
131
#endif
132
#if defined(MAGICKCORE_HAVE_SYS_SYSLIMITS_H)
133
# include <sys/syslimits.h>
134
#endif
135
#if defined(MAGICKCORE_HAVE_ARM_LIMITS_H)
136
# include <arm/limits.h>
137
#endif
138
139
#if defined(MAGICKCORE__OPENCL) && !defined(MAGICK_PIXEL_RGBA)
140
#if defined(MAGICKCORE_HAVE_CL_CL_H)
141
# include <CL/cl.h>
142
#endif
143
#if defined(MAGICKCORE_HAVE_OPENCL_CL_H)
144
# include <OpenCL/cl.h>
145
#endif
146
# define MAGICKCORE_OPENCL_SUPPORT 1
147
#endif
148
149
#if defined(_OPENMP) && ((_OPENMP >= 200203) || defined(__OPENCC__))
150
# include <omp.h>
151
# define MAGICKCORE_OPENMP_SUPPORT 1
152
#endif
153
154
#if defined(MAGICKCORE_HAVE_PREAD) && defined(MAGICKCORE_HAVE_DECL_PREAD) && !MAGICKCORE_HAVE_DECL_PREAD
155
ssize_t pread(
int
,
void
*,
size_t
,off_t);
156
#endif
157
158
#if defined(MAGICKCORE_HAVE_PWRITE) && defined(MAGICKCORE_HAVE_DECL_PWRITE) && !MAGICKCORE_HAVE_DECL_PWRITE
159
ssize_t pwrite(
int
,
const
void
*,
size_t
,off_t);
160
#endif
161
162
#if defined(MAGICKCORE_HAVE_STRLCPY) && defined(MAGICKCORE_HAVE_DECL_STRLCPY) && !MAGICKCORE_HAVE_DECL_STRLCPY
163
extern
size_t
strlcpy(
char
*,
const
char
*,
size_t
);
164
#endif
165
166
#if defined(MAGICKCORE_HAVE_VSNPRINTF) && defined(MAGICKCORE_HAVE_DECL_VSNPRINTF) && !MAGICKCORE_HAVE_DECL_VSNPRINTF
167
extern
int
vsnprintf(
char
*,
size_t
,
const
char
*,va_list);
168
#endif
169
170
#if defined(MAGICKWAND_WINDOWS_SUPPORT) || defined(MAGICKWAND_POSIX_SUPPORT)
171
# include <sys/types.h>
172
# include <sys/stat.h>
173
# if defined(MAGICKCORE_HAVE_SYS_TIMEB_H)
174
# include <sys/timeb.h>
175
# endif
176
# if defined(MAGICKWAND_POSIX_SUPPORT)
177
# if defined(MAGICKCORE_HAVE_SYS_NDIR_H) || defined(MAGICKCORE_HAVE_SYS_DIR_H) || defined(MAGICKCORE_HAVE_NDIR_H)
178
# define dirent direct
179
# define NAMLEN(dirent) (dirent)->d_namlen
180
# if defined(MAGICKCORE_HAVE_SYS_NDIR_H)
181
# include <sys/ndir.h>
182
# endif
183
# if defined(MAGICKCORE_HAVE_SYS_DIR_H)
184
# include <sys/dir.h>
185
# endif
186
# if defined(MAGICKCORE_HAVE_NDIR_H)
187
# include <ndir.h>
188
# endif
189
# else
190
# include <dirent.h>
191
# define NAMLEN(dirent) strlen((dirent)->d_name)
192
# endif
193
# include <sys/wait.h>
194
# include <pwd.h>
195
# endif
196
# if !defined(S_ISDIR)
197
# define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
198
# endif
199
# if !defined(S_ISREG)
200
# define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
201
# endif
202
# include "
wand/MagickWand.h
"
203
# if !defined(MAGICKWAND_WINDOWS_SUPPORT)
204
# include <sys/time.h>
205
# if defined(MAGICKCORE_HAVE_SYS_TIMES_H)
206
# include <sys/times.h>
207
# endif
208
# if defined(MAGICKCORE_HAVE_SYS_RESOURCE_H)
209
# include <sys/resource.h>
210
# endif
211
# if defined(MAGICKCORE_HAVE_SYS_MMAN_H)
212
# include <sys/mman.h>
213
# endif
214
# if defined(MAGICKCORE_HAVE_SYS_SENDFILE_H)
215
# include <sys/sendfile.h>
216
# endif
217
#endif
218
#else
219
# include <types.h>
220
# include <stat.h>
221
# if defined(macintosh)
222
# if !defined(DISABLE_SIOUX)
223
# include <SIOUX.h>
224
# include <console.h>
225
# endif
226
# include <unix.h>
227
# endif
228
#endif
229
230
#if defined(S_IRUSR) && defined(S_IWUSR)
231
# define S_MODE (S_IRUSR | S_IWUSR)
232
#elif defined (MAGICKWAND_WINDOWS_SUPPORT)
233
# define S_MODE (_S_IREAD | _S_IWRITE)
234
#else
235
# define S_MODE 0600
236
#endif
237
238
#if defined(MAGICKWAND_WINDOWS_SUPPORT)
239
# include "magick/nt-base.h"
240
#endif
241
#if defined(macintosh)
242
# include "magick/mac.h"
243
#endif
244
#if defined(vms)
245
# include "magick/vms.h"
246
#endif
247
248
#include "
wand/MagickWand.h
"
249
250
#undef HAVE_CONFIG_H
251
#undef gamma
252
#undef index
253
#undef pipe
254
#undef y1
255
256
/*
257
Review these platform specific definitions.
258
*/
259
#if defined(MAGICKWAND_POSIX_SUPPORT) && !defined(__OS2__)
260
# define DirectorySeparator "/"
261
# define DirectoryListSeparator ':'
262
# define EditorOptions " -title \"Edit Image Comment\" -e vi"
263
# define Exit exit
264
# define IsBasenameSeparator(c) ((c) == '/' ? MagickTrue : MagickFalse)
265
# define X11_PREFERENCES_PATH "~/."
266
# define ProcessPendingEvents(text)
267
# define ReadCommandlLine(argc,argv)
268
# define SetNotifyHandlers
269
#else
270
# if defined(vms)
271
# define X11_APPLICATION_PATH "decw$system_defaults:"
272
# define DirectorySeparator ""
273
# define DirectoryListSeparator ';'
274
# define EditorOptions ""
275
# define Exit exit
276
# define IsBasenameSeparator(c) \
277
(((c) == ']') || ((c) == ':') || ((c) == '/') ? MagickTrue : MagickFalse)
278
# define MAGICKCORE_LIBRARY_PATH "sys$login:"
279
# define MAGICKCORE_SHARE_PATH "sys$login:"
280
# define X11_PREFERENCES_PATH "decw$user_defaults:"
281
# define ProcessPendingEvents(text)
282
# define ReadCommandlLine(argc,argv)
283
# define SetNotifyHandlers
284
# endif
285
# if defined(__OS2__)
286
# define DirectorySeparator "\\"
287
# define DirectoryListSeparator ';'
288
# define EditorOptions " -title \"Edit Image Comment\" -e vi"
289
# define Exit exit
290
# define IsBasenameSeparator(c) \
291
(((c) == '/') || ((c) == '\\') ? MagickTrue : MagickFalse)
292
# define PreferencesDefaults "~\."
293
# define ProcessPendingEvents(text)
294
# define ReadCommandlLine(argc,argv)
295
# define SetNotifyHandlers
296
#endif
297
# if defined(macintosh)
298
# define X11_APPLICATION_PATH "/usr/lib/X11/app-defaults/"
299
# define DirectorySeparator ":"
300
# define DirectoryListSeparator ';'
301
# define EditorOptions ""
302
# define IsBasenameSeparator(c) ((c) == ':' ? MagickTrue : MagickFalse)
303
# define MAGICKCORE_LIBRARY_PATH ""
304
# define MAGICKCORE_SHARE_PATH ""
305
# define X11_PREFERENCES_PATH "~/."
306
# if defined(DISABLE_SIOUX)
307
# define ReadCommandlLine(argc,argv)
308
# define SetNotifyHandlers \
309
SetFatalErrorHandler(MacFatalErrorHandler); \
310
SetErrorHandler(MACErrorHandler); \
311
SetWarningHandler(MACWarningHandler)
312
# else
313
# define ReadCommandlLine(argc,argv) argc=ccommand(argv); puts(MagickVersion);
314
# define SetNotifyHandlers \
315
SetErrorHandler(MACErrorHandler); \
316
SetWarningHandler(MACWarningHandler)
317
# endif
318
# endif
319
# if defined(MAGICKWAND_WINDOWS_SUPPORT)
320
# define DirectorySeparator "\\"
321
# define DirectoryListSeparator ';'
322
# define EditorOptions ""
323
# define IsBasenameSeparator(c) \
324
(((c) == '/') || ((c) == '\\') ? MagickTrue : MagickFalse)
325
# define ProcessPendingEvents(text)
326
# if !defined(X11_PREFERENCES_PATH)
327
# define X11_PREFERENCES_PATH "~\\."
328
# endif
329
# define ReadCommandlLine(argc,argv)
330
# define SetNotifyHandlers \
331
SetErrorHandler(NTErrorHandler); \
332
SetWarningHandler(NTWarningHandler)
333
# if !defined(MAGICKCORE_HAVE_TIFFCONF_H)
334
# define HAVE_TIFFCONF_H
335
# endif
336
# endif
337
338
#endif
339
340
/*
341
Define system symbols if not already defined.
342
*/
343
#if !defined(STDIN_FILENO)
344
#define STDIN_FILENO 0x00
345
#endif
346
347
#if !defined(O_BINARY)
348
#define O_BINARY 0x00
349
#endif
350
351
#if !defined(PATH_MAX)
352
#define PATH_MAX 4096
353
#endif
354
355
/*
356
Magick defines.
357
*/
358
#if defined(_MSC_VER)
359
# define DisableMSCWarning(nr) __pragma(warning(push)) \
360
__pragma(warning(disable:nr))
361
# define RestoreMSCWarning __pragma(warning(pop))
362
#else
363
# define DisableMSCWarning(nr)
364
# define RestoreMSCWarning
365
#endif
366
367
#if defined(__cplusplus) || defined(c_plusplus)
368
}
369
#endif
370
371
#endif
MagickWand.h
wand
studio.h
Generated by
1.8.13