How to read EXIF information of image data?

56 ビュー (過去 30 日間)
MathWorks Support Team
MathWorks Support Team 2019 年 11 月 11 日
回答済み: MathWorks Support Team 2019 年 11 月 11 日
How to read EXIF information of image data?

採用された回答

MathWorks Support Team
MathWorks Support Team 2019 年 11 月 12 日
In order to read EXIF information in MATLAB from image files, please use the 'imfinfo' command which is documented here:
This returns a structure whose fields contain information about an image in a graphics file.
In the struct which will be returned, you can find the EXIF information in the 'DigitalCamera' field.
So you can access the EXIF information as follows:
%Read image information
info = imfinfo(filename);
%Output EXIF information
infoEXIF.DigitalCamera
This information is also described here:
If you have any further questions, please contact our technical support team.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by