Image File Get/Put Dialog Boxes

版本 1.3.0.0 (6.1 KB) 作者: Kesh Ikuma
Open and save image file dialog boxes
942.0 次下载
更新时间 2009/11/13

查看许可证

Contains two functions: UIGETIMFILE and UIPUTIMFILE

As their name suggests, they wraps the standard UIGETFILE and UIPUTFILE functions; the FILTERSPEC parameter in the standard functions is automatically set to browse only MATLAB supported image files according to IMFORMATS function.

Also, the third output parameter is changed to IMFORMAT which is the IMFORMATS entry that corresponds to the selected file (extension). It gives a quick access to ISA/INFO/READ/WRITE functions specific to the selected image format.

Examples:

[filename,pathname,imformat] = uigetimfile('Pick an image file');
[filename,pathname,imformat] = uiputimfile('Save as');

% to use a subset of supported image format
[filename,pathname,imformat] = uigetimfile([1 4 8], 'Pick an image file');
[filename,pathname,imformat] = uiputimfile([1 4 8], 'Save as');
% [1 4 8] are the index to IMFORMATS returning structure.
% In R2009A Windows release, these indexes correspond to BMP, GIF, and JPEG formats.

引用格式

Kesh Ikuma (2024). Image File Get/Put Dialog Boxes (https://www.mathworks.com/matlabcentral/fileexchange/25814-image-file-get-put-dialog-boxes), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2009a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Dialog Boxes 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.3.0.0

Added a screenshot

1.0.0.0