Merge pull request #16535 from jshiwam:exifbugfix

This commit is contained in:
Alexander Alekhin 2020-02-28 16:31:59 +00:00
commit 7ffab23a53

View File

@ -154,7 +154,8 @@ enum ImageOrientation
* Usage example for getting the orientation of the image:
*
* @code
* ExifReader reader(fileName);
* std::ifstream stream(filename,std::ios_base::in | std::ios_base::binary);
* ExifReader reader(stream);
* if( reader.parse() )
* {
* int orientation = reader.getTag(Orientation).field_u16;