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

Online Help

All Products    Maple    MapleSim


ImageTools

  

Embed

  

embed images in a worksheet

 

Calling Sequence

Parameters

Options

Description

Examples

Compatibility

Calling Sequence

Embed( images, opts )

Parameters

images

-

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

opts

-

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

Options

• 

title = string

  

The title of the GUI Table, in the case of lists of images. The default is no title.

• 

titleposition = identical(bottom,top)

  

The position of the title of the GUI Table, in the case of lists of images. The default placement of a title is at the bottom of the table.

• 

exterior = identical(group,all,none)

  

Specifies which of the table's exterior borders are visible.

• 

interior = identical(group,all,none)

  

Specifies which of the table's interior borders are visible.

• 

tempdir = string

  

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

Description

• 

The Embed command embeds an image or a GUI Table of images into the current worksheet.

• 

If the parameter images is a single image, then that image is displayed without an encapsulating table.

• 

If the parameter images is a list of images or a list of list of images, then each of the images is displayed in a cell of the GUI Table.

• 

The images in a list are displayed in a row of the table, from left to right in the same order that they occur in the list.

• 

In the case of a list of lists of images the inner lists (rows) are stacked and displayed from top to bottom in the same order that they occur in the outer list.

• 

The image or table of images is embedded within an overwritable region in the current Worksheet or Document. Repeated execution of a call to the Embed command will overwrite the previously inserted region. All such regions are deleted if you remove output from the worksheet.

• 

The return value of this command is NULL.

Examples

withImageTools:

Create two images.

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

img2Complementimg1:

Display a single image, without a table.

Embedimg1

Display a single image, inside a table.

Embedimg1

Display two images side by side, with a title.

Embedimg1,img2,title=A pair of images

Display two stacked images.

Embedimg1,img2

Display four images in a 2 by 2 grid.

Embedimg1,img2,img2,img1

Compatibility

• 

The ImageTools:-Embed command was introduced in Maple 18.

• 

For more information on Maple 18 changes, see Updates in Maple 18.

See Also

ImageTools

ImageTools[Preview]

ImageTools[View]