Error when reading tiff : Bad code word at line 17 of strip 25 (x 1520). `Fax4Decode #1804
Unanswered
vibin211029
asked this question in
Help
Replies: 1 comment
-
It looks like the second page of your tiff file is correct. I might be able to give you a bit more info if you would provide your file but I don't think there is anything you can do to fix this. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to read a tiff file.
The first page has a compression = None, while remaining pages are Compression = CCITTFAX4
When I try to read this file, it results in above error - Bad code word at line 17 of strip 25 (x 1520). `Fax4Decode
var settings = new MagickReadSettings
{
FrameIndex = 0 // works fine
};
var settings = new MagickReadSettings
{
FrameIndex = 1 // error
};
var settings = new MagickReadSettings
{
FrameIndex = 2 // works fine
};
var imageCollection = new MagickImageCollection(inputPath, settings);
Beta Was this translation helpful? Give feedback.
All reactions