MagickWand 6.9.11-60
Convert, Edit, Or Compose Bitmap Images
magick-wand-private.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  _MagickWand
 

Macros

#define MagickPI   3.14159265358979323846264338327950288419716939937510
 
#define MagickWandId   "MagickWand"
 
#define QuantumTick(i, span)
 
#define ThrowWandException(severity, tag, context)
 
#define ThrowWandFatalException(severity, tag, context)
 

Macro Definition Documentation

◆ 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); \
}