You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
private void seekToImage(int imageIndex, boolean optimized) throws IIOException {
checkIndex(imageIndex);
// TODO we should do this initialization just once!!!
...
I suppose that this is simple improvement without side effects.
Thank you.
The text was updated successfully, but these errors were encountered:
Simple improvement. Please replace TODO at the begining of TIFFImageReader::seekToImage with single line:
if (optimized && imageMetadata != null && initialized && currIndex == imageIndex) return;
Original code:
I suppose that this is simple improvement without side effects.
Thank you.
The text was updated successfully, but these errors were encountered: