BitmapDecoder.GetFrameAsync(UInt32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从图像文件中异步检索帧。
public:
virtual IAsyncOperation<BitmapFrame ^> ^ GetFrameAsync(unsigned int frameIndex) = GetFrameAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<BitmapFrame> GetFrameAsync(uint32_t const& frameIndex);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<BitmapFrame> GetFrameAsync(uint frameIndex);
function getFrameAsync(frameIndex)
Public Function GetFrameAsync (frameIndex As UInteger) As IAsyncOperation(Of BitmapFrame)
参数
- frameIndex
-
UInt32
unsigned int
uint32_t
要检索的帧的从零开始的索引。
返回
管理帧的异步检索的对象。
- 属性
注解
无需使用此方法访问图像文件中第一帧的数据。 BitmapDecoder 已经提供了访问第一个帧的方法。
可以使用 FrameCount 属性获取图像上的总帧数。