MATLAB: Reading File Property Details

file-propertiesMATLAB and Simulink Student Suiteread

Hello, I am trying to read information from the file propery detail section that you can access on Windows via the right-click properties. Doing that I found the information I need in the parametres title and subtitle (see attached screenshot). Is there a way MatLab can read this information? It would be very important for my project.
I would really appreciate any help!

Best Answer

I asked for the imfinfo for one of the sample TIF files included in MATLAB. The Description information shown by Windows appeared in the ImageDescription field of the output of that imfinfo call, or at least the start of the Description in Windows matched the start of the ImageDescription.
data = imfinfo(fullfile(matlabroot, 'toolbox', 'matlab', 'demos', 'example.tif'));
data(1).ImageDescription
Related Question