display - Interactively Display and Edit an Image
MagickBooleanType DisplayImages( const ImageInfo *image_info, Image *images );
MagickBooleanType DisplayImages( const ImageInfo *image_info, Image *images );
MagickBooleanType XDisplayBackgroundImage( Display *display, XResourceInfo *resource_info, Image *image );
Image * XDisplayImage( Display *display, XResourceInfo *resource_info, char ** argv, int argc, Image ** image, unsigned long *state );
DisplayImages() displays an image sequence to any X window screen. It returns a value other than 0 if successful. Check the exception member of image to determine the reason for any failure. The format of the DisplayImages method is:
MagickBooleanType DisplayImages ( const ImageInfo *image_info, Image *images ); A description of each parameter follows:
- image_info:
-
The image info.
- image:
-
The image.
XDisplayBackgroundImage() displays an image in the background of a window. The format of the XDisplayBackgroundImage method is:
MagickBooleanType XDisplayBackgroundImage ( Display *display, XResourceInfo *resource_info, Image *image ); A description of each parameter follows:
- display:
-
Specifies a connection to an X server; returned from XOpenDisplay.
- resource_info:
-
Specifies a pointer to a X11 XResourceInfo structure.
- image:
-
The image; returned from ReadImage.
XDisplayImage() displays an image via X11. A new image is created and returned if the user interactively transforms the displayed image. The format of the XDisplayImage method is:
Image *XDisplayImage ( Display *display, XResourceInfo *resource_info, char **argv, int argc, Image **image, unsigned long *state ); A description of each parameter follows:
- nexus:
-
Method XDisplayImage returns an image when the user chooses 'Open Image' from the command menu or picks a tile from the image directory. Otherwise a null image is returned.
- display:
-
Specifies a connection to an X server; returned from XOpenDisplay.
- resource_info:
-
Specifies a pointer to a X11 XResourceInfo structure.
- argv:
-
Specifies the application's argument list.
- argc:
-
Specifies the number of arguments.
- image:
-
Specifies an address to an address of an Image structure; returned from ReadImage.
DisplayImages() displays an image sequence to any X window screen. It returns a value other than 0 if successful. Check the exception member of image to determine the reason for any failure. The format of the DisplayImages method is:
MagickBooleanType DisplayImages ( const ImageInfo *image_info, Image *images ); A description of each parameter follows:
- image_info:
-
The image info.
- image:
-
The image.
|