Image File Get/Put Dialog Boxes

Open and save image file dialog boxes
942 download
Aggiornato 13 nov 2009

Visualizza la licenza

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.

Cita come

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. Recuperato .

Compatibilità della release di MATLAB
Creato con R2009a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Dialog Boxes in Help Center e MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
1.3.0.0

Added a screenshot

1.0.0.0