getframe
Capture figure or axes as movie frame.
πŸ“Syntax
F = getframe
F = getframe(ax)
F = getframe(fig)
πŸ“₯Input Arguments
Parameter Description
ax axes object: Axes to capture.
fig figure object: Figure to capture.
πŸ“€Output Arguments
Parameter Description
F struct: Movie frame.
πŸ“„Description

F = getframe captures the current axes as displayed on the screen as a movie frame. F is a structure containing the image data. The capture preserves the on-screen size of the axes but does not include tick labels or any content outside the axes boundaries.

F = getframe(ax) captures the specified axes ax instead of the current axes.

F = getframe(fig) captures the entire figure window specified by fig, including the axes title, labels, and tick marks. However, the captured frame does not include the figure’s menu or toolbars.

πŸ’‘Examples
f = figure();
surf(peaks);
F = getframe(f);
figure('Color',[0.5 0.5 0.5]);
imshow(F.cdata)
f = figure();
ax1 = subplot(2,1,1);
surf(peaks);
ax2 = subplot(2,1,2);
plot(rand(30))
F1 = getframe(ax1);
F2 = getframe(ax2);
figure('Color',[0.5 0.5 0.5]);
imshow(F1.cdata)
figure('Color',[0.5 0.5 0.5]);
imshow(F2.cdata)
πŸ”—See Also
imageimshowimwrite
πŸ•”Version History
Version Description
1.13.0 initial version
Edit this page on GitHub