Save Image Tool
Use the imsave
function to create a Save Image tool. The
Save Image tool displays an interactive file chooser dialog box (shown below) in which
you can specify a path and filename. When you click Save, the
Save Image tool writes the target image to a file using the image file format you select
in the Files of Type menu. For more information about using the tool, see Tips.
imsave
creates a Save Image tool in a separate figure that is
associated with the image in the current figure, called the target image.
imsave(
creates a Save Image tool
associated with the image specified by the handle h
)h
.
[
returns the full path to the file selected in filename
,user_canceled
] = imsave(___)filename
and
indicates whether you canceled the save operation.
In contrast to the Save as option in the figure File menu, the Save Image tool saves only the image displayed in the figure. The Save as option in the figure window File menu saves the entire figure window, not just the image.
imsave
uses imwrite
to save the image,
using default options.
If you specify a filename that already exists, imsave
displays a warning message. Select Yes to use the filename
or No to return to the dialog to select another filename.
If you select Yes, the Save Image tool attempts to
overwrite the target file.
The Save Image tool is modal; it blocks the MATLAB® command line until you respond.