Commit 1f48940a authored by jshiwam's avatar jshiwam

bug fix to Inconsistent comment for EXIF issue id #15706 stream added final

removed all the changes occured while trying to resolve conflicts
parent 95f0c9b1
...@@ -154,7 +154,8 @@ enum ImageOrientation ...@@ -154,7 +154,8 @@ enum ImageOrientation
* Usage example for getting the orientation of the image: * Usage example for getting the orientation of the image:
* *
* @code * @code
* ExifReader reader(fileName); * std::ifstream stream(filename,std::ios_base::in | std::ios_base::binary);
* ExifReader reader(stream);
* if( reader.parse() ) * if( reader.parse() )
* { * {
* int orientation = reader.getTag(Orientation).field_u16; * int orientation = reader.getTag(Orientation).field_u16;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment