Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RFE: improve performance of TIFFImageReader::seekToImage #249

Open
jandam opened this issue Nov 11, 2021 · 0 comments
Open

RFE: improve performance of TIFFImageReader::seekToImage #249

jandam opened this issue Nov 11, 2021 · 0 comments

Comments

@jandam
Copy link

jandam commented Nov 11, 2021

Simple improvement. Please replace TODO at the begining of TIFFImageReader::seekToImage with single line:

if (optimized && imageMetadata != null && initialized && currIndex == imageIndex) return;

Original code:

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant