Searched refs:firstIfdOffset (Results 1 – 1 of 1) sorted by relevance
2081 long firstIfdOffset = dataInputStream.readUnsignedInt(); in readExifSegment() local2082 if (firstIfdOffset < 8 || firstIfdOffset >= exifBytes.length) { in readExifSegment()2083 throw new IOException("Invalid first Ifd offset: " + firstIfdOffset); in readExifSegment()2085 firstIfdOffset -= 8; in readExifSegment()2086 if (firstIfdOffset > 0) { in readExifSegment()2087 if (dataInputStream.skip(firstIfdOffset) != firstIfdOffset) { in readExifSegment()2088 throw new IOException("Couldn't jump to first Ifd: " + firstIfdOffset); in readExifSegment()