| MATLAB Function Reference | Search  Help Desk |
| capture | See Also |
capture capture(h) [X,cmap] = capture(h)
capture
creates a bitmap copy of the contents of the current Figure, including any Uicontrol graphics objects. It creates a new Figure and displays the bitmap copy as an Image graphics object in the new Figure.
capture(h)
creates a new Figure that contains a copy of the Figure identified by h.
[X,cmap] = capture(h)
returns an image matrix X and a colormap. You display this information using the statements
colormap(cmap) image(X)The resolution of a bitmap copy is less than that obtained with the
print command.
image, print