We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
next_ifd_offset
1 parent 47b095e commit 650cca1Copy full SHA for 650cca1
src/metadata/reader.rs
@@ -89,6 +89,13 @@ impl TiffMetadataReader {
89
self.next_ifd_offset.is_some()
90
}
91
92
+ /// The byte offset of the start of the next IFD.
93
+ ///
94
+ /// This will be `None` if all IFDs have already been read.
95
+ pub fn next_ifd_offset(&self) -> Option<u64> {
96
+ self.next_ifd_offset
97
+ }
98
+
99
/// Read the next IFD from the file.
100
///
101
/// If there are no more IFDs, returns `None`.
0 commit comments