CloneDrawInfo() makes a copy of the given draw info structure. If NULL is specified, a new image info structure is created initialized to default values.
The format of the CloneDrawInfo method is:
DrawInfo *CloneDrawInfo( const ImageInfo *image_info, const DrawInfo *draw_info );
DestroyDrawInfo() deallocates memory associated with an DrawInfo structure.
The format of the DestroyDrawInfo method is:
void DestroyDrawInfo( DrawInfo *draw_info );
A description of each parameter follows:
unsigned int DrawAffineImage( Image *image, const Image *composite, const AffineMatrix *affine );
DrawAffineImage() composites the source over the destination image as dictated by the affine transform.
The format of the DrawAffineImage method is:
unsigned int DrawAffineImage( Image *image, const Image *composite, const AffineMatrix *affine );
DrawClipPath() draws the clip path on the image mask.
The format of the DrawClipPath method is:
unsigned int DrawClipPath( Image *image, const DrawInfo *draw_info, const char *name );
Use DrawImage() to draw a graphic primitive on your image. The primitive may be represented as a string or filename. Precede the filename with an "at" sign (@) and the contents of the file are drawn on the image. You can affect how text is drawn by setting one or more members of the draw info structure.
Note that this is a legacy interface. Authors of new code should consider using the Draw* methods defined by magick/draw.h since they are better documented and less error prone.
The format of the DrawImage method is:
unsigned int DrawImage( Image *image, const DrawInfo *draw_info );
A description of each parameter follows:
unsigned int DrawPatternPath( Image *image, const DrawInfo *draw_info, const char *name, Image ** pattern );
DrawPatternPath() draws a pattern.
The format of the DrawPatternPath method is:
unsigned int DrawPatternPath( Image *image, const DrawInfo *draw_info, const char *name, Image ** pattern );