如何在.NET 2.0 中打开多帧 TIFF 图像格式图像?
Image.FromFile(@"path\filename.tif")
或者
Image.FromStream(memoryStream)
两者都生成仅具有一帧的图像对象,即使源是多帧 TIFF 文件。 如何加载保留这些帧的图像文件? 使用 Image.SaveAdd 方法逐帧保存 tiff。 它们在其他查看器中工作,但 .NET Image 方法不会加载这些帧,只会加载第一个帧。
这是否意味着无法从我传入用作帧的位图集合的方法返回多帧 TIFF?
Image.FromFile(@"path\filename.tif")
or
Image.FromStream(memoryStream)
both produce image objects with only one frame even though the source is a multi-frame TIFF file. How do you load an image file that retains these frames? The tiffs are saved using the Image.SaveAdd methods frame by frame. They work in other viewers but .NET Image methods will not load these frames, only the first.
Does this mean that there is no way to return a multi-frame TIFF from a method where I am passing in a collection of bitmaps to be used as frames?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是我使用的:
Here's what I use:
我能够使用以下方法处理多帧 tiff。
我没有尝试过 .net 2.0 中的解决方案,但 MSDN 显示类成员存在。 它确实解决了我在 .net 4.5.2 中的问题。
I was able to handle the multi-frame tiff by using the below method.
I have not tried the solution in .net 2.0 but MSDN shows the class members to exist. It did fix my problem in .net 4.5.2.
位图.Dispose();
For 循环之后,您需要处理位图。 否则,当尝试在其他进程中使用同一文件时,您会收到错误“文件使用其他进程”。
bitmap.Dispose();
After For loop you need to Dispose bitmap. Otherwise you get error "file using other process" when try to use same file in other process.