View - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


ImageTools

  

View

  

display images in a maplet

 

Calling Sequence

Parameters

Options

Description

Examples

Calling Sequence

View( row1, row2, ..., opts )

Parameters

rowi

-

(optional) Image or list(Image); row of images

opts

-

(optional) equation(s) of the form option = value; specify options for the View command

Options

• 

tempdir = string

  

Specifies the temporary directory into which images can be written. The default is system specific.

• 

title = string

  

The title displayed in the Maplet titlebar. The default is Image View.

Description

• 

The View command launches a Maplet dialog that displays rows of images. Each row can contain one or more images.

• 

If the parameter rowi is an image, then that image is displayed in row i.

• 

If the parameter rowi is a list of images, then each of the images is displayed in row i. The first image in the list is displayed on the left.

• 

The first row (row1) is the upper-most.

Examples

withImageTools:

Create two images.

img1Create100,200,r,cevalf0.5sinr50+0.5sinc30:

img2Complementimg1:

Display a single image.

Viewimg1

Display two images side by side.

Viewimg1,img2

Display two images above each other.

Viewimg1,img2

Display four images in a 2 by 2 grid.

Viewimg1,img2,img2,img1

See Also

ImageTools

ImageTools[Preview]