Replies: 1 comment 1 reply
-
Unfortunaly that workaround is not possible. We simply do not support frame different sizes at this point. It's something I want to look into (I have the beginnings of a plan) but it will require a lot of work to refactor the codebase to manage this. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I previously asked about converting multi-page TIFFs to PNGs in this discussion (#2377 (comment)). I have encountered issues with working with TIFFs that have multi-size pages in that one page could be say 1000px by 1000px and another could be 1234px by 5678px in the same tiff. When I encounter a TIFF like this, I get the following error:
Unhandled exception. System.NotSupportedException: Images with different sizes are not supported
upon loading the image withImage.Load
.There has been previous discussion and a feature on this in the following links:
#1982
#2013
From these discussions, I believe I would need to do the following:
However, I am not familiar with how to use the DecoderOptions and how to decode images or if the above process would work.
This is what I have now, which is broken:
I tried using
Image.Identify()
but I can't seem to get the frame counts or frame sizes if they differ.Any thoughts would be appreciated!
Beta Was this translation helpful? Give feedback.
All reactions