MATLAB Functions | Help Desk |
capture
Screen capturecapture 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