Go to the source code of this file.
◆ MagickPI
| #define MagickPI 3.14159265358979323846264338327950288419716939937510 |
◆ MagickWandId
| #define MagickWandId "MagickWand" |
◆ QuantumTick
| #define QuantumTick |
( |
|
i, |
|
|
|
span |
|
) |
| |
Value: ((MagickBooleanType) ((((i) & ((i)-1)) == 0) || \
(((i) & 0xfff) == 0) || \
((MagickOffsetType) (i) == ((MagickOffsetType) (span)-1))))
◆ ThrowWandException
| #define ThrowWandException |
( |
|
severity, |
|
|
|
tag, |
|
|
|
context |
|
) |
| |
Value:{ \
(void) ThrowMagickException(wand->exception,GetMagickModule(),severity, \
tag,"`%s'",context); \
return(MagickFalse); \
}
◆ ThrowWandFatalException
| #define ThrowWandFatalException |
( |
|
severity, |
|
|
|
tag, |
|
|
|
context |
|
) |
| |
Value:{ \
ExceptionInfo \
*exception; \
\
exception=AcquireExceptionInfo(); \
(void) ThrowMagickException(exception,GetMagickModule(),severity,tag, \
"`%s'",context); \
CatchException(exception); \
(void) DestroyExceptionInfo(exception); \
MagickWandTerminus(); \
_exit((int) (severity-FatalErrorException)+1); \
}