LateBoundBitmapDecoder.Frames 属性

定义

获取位图中单个帧的内容。

public:
 virtual property System::Collections::ObjectModel::ReadOnlyCollection<System::Windows::Media::Imaging::BitmapFrame ^> ^ Frames { System::Collections::ObjectModel::ReadOnlyCollection<System::Windows::Media::Imaging::BitmapFrame ^> ^ get(); };
public override System.Collections.ObjectModel.ReadOnlyCollection<System.Windows.Media.Imaging.BitmapFrame> Frames { get; }
member this.Frames : System.Collections.ObjectModel.ReadOnlyCollection<System.Windows.Media.Imaging.BitmapFrame>
Public Overrides ReadOnly Property Frames As ReadOnlyCollection(Of BitmapFrame)

属性值

BitmapFrame 的一个实例。 此属性没有默认值。

示例

下面的示例演示如何将 用作 BitmapFrameBitmapSource


// Open a Stream and decode a TIFF image
Stream imageStreamSource = new FileStream("tulipfarm.tif", FileMode.Open, FileAccess.Read, FileShare.Read);
TiffBitmapDecoder decoder = new TiffBitmapDecoder(imageStreamSource, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.Default);
BitmapSource bitmapSource = decoder.Frames[0];

// Draw the Image
Image myImage1 = new Image();
myImage1.Source = bitmapSource;
myImage1.Stretch = Stretch.None;
myImage1.Margin = new Thickness(20);
' Open a Stream and decode a TIFF image
Dim imageStreamSource As New FileStream("tulipfarm.tif", FileMode.Open, FileAccess.Read, FileShare.Read)
Dim decoder As New TiffBitmapDecoder(imageStreamSource, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.Default)
Dim bitmapSource As BitmapSource = decoder.Frames(0)

' Draw the Image
Dim myImage1 As New Image()
myImage1.Source = bitmapSource
myImage1.Stretch = Stretch.None
myImage1.Margin = New Thickness(20)

注解

LateBoundBitmapDecoder由于 是异步下载的,因此在下载和解码内容后, 的基础Frames集合可能会更改。 下载内容时,集合始终返回至少一项。 下载和解码完成后, BitmapFrame 会自动更改其基础内容。 换句话说,只有集合对象可以更改;实际帧对象保持不变。

在下载图像时从 LateBoundBitmapDecoder 获取的任何帧都将返回宽度/高度, 1,1 直到帧完成下载。

只有标记图像文件格式 (TIFF) 和图形交换格式 (GIF) 图像支持多个帧。

此属性返回的任何 BitmapFrame 对象都已冻结。

适用于

另请参阅