|
MagickWand
6.7.5
|
#include "MagickWand/studio.h"#include "MagickWand/MagickWand.h"#include "MagickWand/mogrify-private.h"#include "MagickCore/string-private.h"
Go to the source code of this file.
Defines | |
| #define | DestroyMontage() |
| #define | ThrowMontageException(asperity, tag, option) |
| #define | ThrowMontageInvalidArgumentException(option, argument) |
Functions | |
| static MagickBooleanType | MontageUsage (void) |
| WandExport MagickBooleanType | MontageImageCommand (ImageInfo *image_info, int argc, char **argv, char **metadata, ExceptionInfo *exception) |
| #define DestroyMontage | ( | ) |
{ \
if (montage_image != (Image *) NULL) \
montage_image=DestroyImageList(montage_image); \
DestroyImageStack(); \
for (i=0; i < (ssize_t) argc; i++) \
argv[i]=DestroyString(argv[i]); \
argv=(char **) RelinquishMagickMemory(argv); \
}
Referenced by MontageImageCommand().
| #define ThrowMontageException | ( | asperity, | |
| tag, | |||
| option | |||
| ) |
{ \
(void) ThrowMagickException(exception,GetMagickModule(),asperity,tag,"`%s'", \
option); \
DestroyMontage(); \
return(MagickFalse); \
}
Referenced by MontageImageCommand().
| #define ThrowMontageInvalidArgumentException | ( | option, | |
| argument | |||
| ) |
{ \
(void) ThrowMagickException(exception,GetMagickModule(),OptionError, \
"InvalidArgument","`%s': %s",option,argument); \
DestroyMontage(); \
return(MagickFalse); \
}
Referenced by MontageImageCommand().
| WandExport MagickBooleanType MontageImageCommand | ( | ImageInfo * | image_info, |
| int | argc, | ||
| char ** | argv, | ||
| char ** | metadata, | ||
| ExceptionInfo * | exception | ||
| ) |
Definition at line 259 of file montage.c.
References image, MaxImageStackDepth, MontageUsage(), NewImageStack, ReadCommandlLine, ThrowMontageException, FireImageStack, PushImageStack, PopImageStack, images, MaxTextExtent, AppendImageStack, ThrowMontageInvalidArgumentException, _ImageStack::image, MogrifyImageInfo(), DestroyMontage, and FinalizeImageSettings.
| static MagickBooleanType MontageUsage | ( | void | ) | [static] |
Definition at line 84 of file montage.c.
Referenced by MontageImageCommand().