We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Just received this, parsing a PDF:
Index out of bounds. Generated exception: 'System.IndexOutOfRangeException' in JBig2Decoder.dll
I'm investigating more in deep...
The text was updated successfully, but these errors were encountered:
OK. It seems related to JBig2Image.cs. The method readbitmap() has this snippet of code:
if (typicalPredictionGenericDecodingOn) { int bit = arithmeticDecoder.DecodeBit(ltpCX, arithmeticDecoder.genericRegionStats); if (bit != 0) { ltp = !ltp; } if (ltp) { DuplicateRow(row, row - 1); continue; } }
where ltp is true and row is zero... thus duplicaterow fails...
Sorry, something went wrong.
Well, it seems that is the same issue resolved by the pull request Update JBig2Image.cs
Applying the corrections it works for me!
No branches or pull requests
Just received this, parsing a PDF:
Index out of bounds.
Generated exception: 'System.IndexOutOfRangeException' in JBig2Decoder.dll
I'm investigating more in deep...
The text was updated successfully, but these errors were encountered: