Saving a multi frame TIFF

孤者浪人 提交于 2019-12-01 21:11:06
Yahia

Since you don't provide any detailed information... just some general tips:

Multi-Frame TIFF are very complex files - for example every frame can have a different encoding... a single Bitmap/Image can't hold all frames with all relevant information (like encoding and similar) of such a file, only one at a time.

For loading you need to set parameter which tells the class which frame to load, otherwise it just loads the first... for some code see here.

Similar problems arise when saving multi-frame TIFFs - here you need to work with EncoderParameters and use SaveAdd etc. - for some working code see here.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!