gpt4 book ai didi

wpf - 我需要在 WPF 应用程序中查看多页 TIFF

转载 作者:行者123 更新时间:2023-12-01 10:14:11 25 4
gpt4 key购买 nike

我需要使用 WPF 查看多页 tiff。

我目前有以下内容:

<FlowDocumentReader>
<FlowDocument>
<BlockUIContainer>
<Image x:Name="DocImg" Source="test1752158790.tif" />
</BlockUIContainer>
</FlowDocument>
</FlowDocumentReader>

我只能查看第一页。

有办法吗?

谢谢!托德

最佳答案

another 中的回答问题,使用TiffBitmapDecoder .

像这样:

// Decode TIFF image
ImageStream = new FileStream(EnvelopeItem.LocalImagePath, FileMode.Open, FileAccess.Read, FileShare.Read);
ImageDecoder = new TiffBitmapDecoder(ImageStream, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.Default);
PageImage.Source = ImageDecoder.Frames.FirstOrDefault();

不过,在用图像显示帧之前不要处理流。

关于wpf - 我需要在 WPF 应用程序中查看多页 TIFF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2758941/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com