User`s guide

mlreportgen.dom.ImageMap class
12-181
A session-unique ID is generated as part of document element creation. The generated
tag has the form CLASS:ID, where CLASS is the class of the element and ID is the value
of the Id property of the object. You can specify a tag to replace the generated tag.
Specify your own tag value, for example, to make it easier to identify where an issue
occurred during document generation.
Methods
Method Purpose
append Append an image area to this image map.
clone
Use ImageMap.clone in a similar way you
how you use Paragraph.clone.
Clone this image map.
Examples
Append an Image Area to an Image Map
import mlreportgen.dom.*
d = Document('imageArea','html');
x = 0:pi/100:2*pi;
y = sin(x);
plot(x,y);
annotation('textbox', [0.2,0.4,0.1,0.1],...
'String', 'Help on plot function');
saveas(gcf,'plot_img.png');
plot1 = Image('plot_img.png');
append(d,plot1);
area1 = ImageArea(...
['http://www.mathworks.com/help/matlab/ref/' ...
'plot.html?searchHighlight=plot'], ...
'plot function help', 240,450,463,492);
map = ImageMap();