Skip to content

Commit

Permalink
addition for documentation of isoSpeed
Browse files Browse the repository at this point in the history
  • Loading branch information
norbertwg authored and kmilos committed Jul 21, 2023
1 parent f791388 commit 3e8e09d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions include/exiv2/easyaccess.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ class ExifData;
//! will return expected/desired metadata most of the time.
EXIV2API ExifData::const_iterator orientation(const ExifData& ed);
//! Return the ISO speed used to shoot the image. Please keep in mind that this accessor is provided for convenience
//! only and will return expected/desired metadata most of the time.
//! only and will return expected/desired metadata most of the time. Please note also that ISO speed function uses some
//! computations, which might involve combining information from multiple tags and interpreting numeric codes. While the
//! computations try to cover most cases, they can't be perfect and might fail in some circumstances, leading to
//! imprecise results.
EXIV2API ExifData::const_iterator isoSpeed(const ExifData& ed);
//! Return the date and time when the original image data was generated. Please keep in mind that this accessor is
//! provided for convenience only and will return expected/desired metadata most of the time.
Expand All @@ -56,7 +59,7 @@ EXIV2API ExifData::const_iterator imageQuality(const ExifData& ed);
EXIV2API ExifData::const_iterator whiteBalance(const ExifData& ed);
//! Return the name of the lens used. Please keep in mind that this accessor is provided for convenience only and will
//! return expected/desired metadata most of the time. Please note also that lens name function uses some heuristics to
//! reconstruct the lens name, which might involve combinig information from multiple tags and interpreting numeric
//! reconstruct the lens name, which might involve combining information from multiple tags and interpreting numeric
//! codes. While the heuristics try to cover most cases, they can't be perfect and might fail in some circumstances,
//! leading to imprecise results.
EXIV2API ExifData::const_iterator lensName(const ExifData& ed);
Expand Down

0 comments on commit 3e8e09d

Please sign in to comment.