InsertFrame

InsertFrame(int)

在指定索引处将新帧插入到自己的帧集合中。 将根据当前图像的大小创建一个新帧。

public ApngFrame InsertFrame(int index)
范围类型描述
indexInt32指数。

返回值

新创建的 APNG 帧。

例外

例外(健康)状况
ArgumentOutOfRangeExceptionindex小于 0. 或 index大于PageCount .

也可以看看


InsertFrame(int, RasterImage)

在指定索引处将新帧插入到自己的帧集合中。 新帧的内容将从指定的图像中填充。

public void InsertFrame(int index, RasterImage frameImage)
范围类型描述
indexInt32指数。
frameImageRasterImage帧图像。

例外

例外(健康)状况
ArgumentOutOfRangeExceptionindex小于 0. 或 index大于PageCount .
ArgumentNullException帧图像为空。

也可以看看


InsertFrame(int, RasterImage, uint)

在指定索引处将新帧插入到自己的帧集合中。 新帧的内容将从指定的图像中填充。

public void InsertFrame(int index, RasterImage frameImage, uint frameTime)
范围类型描述
indexInt32指数。
frameImageRasterImage帧图像。
frameTimeUInt32帧持续时间,以毫秒为单位。

例外

例外(健康)状况
ArgumentOutOfRangeExceptionindex小于 0. 或 index大于PageCount .
ArgumentNullException帧图像为空。

也可以看看