BitmapFrame 类

定义

表示由解码器返回并被编码器接受的图像数据。

public ref class BitmapFrame abstract : System::Windows::Media::Imaging::BitmapSource, System::Windows::Markup::IUriContext
public abstract class BitmapFrame : System.Windows.Media.Imaging.BitmapSource, System.Windows.Markup.IUriContext
type BitmapFrame = class
    inherit BitmapSource
    interface IUriContext
Public MustInherit Class BitmapFrame
Inherits BitmapSource
Implements IUriContext
继承
实现

示例

下面的代码示例演示如何使用 BitmapFrame创建新的 BitmapSource

int width = 128;
int height = width;
int stride = width/8;
byte[] pixels = new byte[height*stride];

// Try creating a new image with a custom palette.
List<System.Windows.Media.Color> colors = new List<System.Windows.Media.Color>();
colors.Add(System.Windows.Media.Colors.Red);
colors.Add(System.Windows.Media.Colors.Blue);
colors.Add(System.Windows.Media.Colors.Green);
BitmapPalette myPalette = new BitmapPalette(colors);

// Creates a new empty image with the pre-defined palette

BitmapSource image = BitmapSource.Create(
    width,
    height,
    96,
    96,
    PixelFormats.Indexed1,
    myPalette, 
    pixels, 
    stride);

FileStream stream = new FileStream("empty.tif", FileMode.Create);
TiffBitmapEncoder encoder = new TiffBitmapEncoder();
TextBlock myTextBlock = new TextBlock();
myTextBlock.Text = "Codec Author is: " + encoder.CodecInfo.Author.ToString();
encoder.Frames.Add(BitmapFrame.Create(image));
MessageBox.Show(myPalette.Colors.Count.ToString());
encoder.Save(stream);
Dim width As Integer = 128
Dim height As Integer = width
Dim stride As Integer = CType(width / 8, Integer)
Dim pixels(height * stride) As Byte

' Try creating a new image with a custom palette.
Dim colors As New List(Of System.Windows.Media.Color)()
colors.Add(System.Windows.Media.Colors.Red)
colors.Add(System.Windows.Media.Colors.Blue)
colors.Add(System.Windows.Media.Colors.Green)
Dim myPalette As New BitmapPalette(colors)

' Creates a new empty image with the pre-defined palette
Dim image As BitmapSource = System.Windows.Media.Imaging.BitmapSource.Create(width, height, 96, 96, PixelFormats.Indexed1, myPalette, pixels, stride)
Dim stream As New FileStream("empty.tif", FileMode.Create)
Dim encoder As New TiffBitmapEncoder()
Dim myTextBlock As New TextBlock()
myTextBlock.Text = "Codec Author is: " + encoder.CodecInfo.Author.ToString()
encoder.Frames.Add(BitmapFrame.Create(image))
MessageBox.Show(myPalette.Colors.Count.ToString())
encoder.Save(stream)

下面的代码示例演示如何使用 BitmapFrame 对象打开可移植网络图形 (PNG) 图形,并使用 CreateInPlaceBitmapMetadataWriter 方法编写元数据。

Stream^ pngStream = gcnew FileStream("smiley.png", FileMode::Open, FileAccess::ReadWrite, FileShare::ReadWrite);
PngBitmapDecoder^ pngDecoder = gcnew PngBitmapDecoder(pngStream, BitmapCreateOptions::PreservePixelFormat, BitmapCacheOption::Default);
BitmapFrame^ pngFrame = pngDecoder->Frames[0];
InPlaceBitmapMetadataWriter^ pngInplace = pngFrame->CreateInPlaceBitmapMetadataWriter();
if (pngInplace->TrySave() == true)
{
   pngInplace->SetQuery("/Text/Description", "Have a nice day.");
}
pngStream->Close();
Stream pngStream = new System.IO.FileStream("smiley.png", FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite);
PngBitmapDecoder pngDecoder = new PngBitmapDecoder(pngStream, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.Default);
BitmapFrame pngFrame = pngDecoder.Frames[0];
InPlaceBitmapMetadataWriter pngInplace = pngFrame.CreateInPlaceBitmapMetadataWriter();
if (pngInplace.TrySave() == true)
{ pngInplace.SetQuery("/Text/Description", "Have a nice day."); }
pngStream.Close();
Dim pngStream As New System.IO.FileStream("smiley.png", FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite)
Dim pngDecoder As New PngBitmapDecoder(pngStream, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.Default)
Dim pngFrame As BitmapFrame = pngDecoder.Frames(0)
Dim pngInplace As InPlaceBitmapMetadataWriter = pngFrame.CreateInPlaceBitmapMetadataWriter()
If pngInplace.TrySave() = True Then
    pngInplace.SetQuery("/Text/Description", "Have a nice day.")
End If
pngStream.Close()

注解

BitmapFrame通过提供对Thumbnail与图像的特定帧关联的 的 的访问权限,提供未定义的BitmapSource附加功能。 BitmapFrame 还支持使用 Metadata 属性或 CreateInPlaceBitmapMetadataWriter 方法写入元数据信息。

从解码器返回的任何 BitmapFrame 操作始终处于冻结状态。 如果需要可修改副本,必须先使用 Clone 方法创建 的副本BitmapFrame

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

构造函数

BitmapFrame()

初始化 BitmapFrame 类的新实例。

属性

BaseUri

在派生类中重写时,获取或设置一个值,该值表示当前上下文的基 Uri

CanFreeze

获取一个值,该值指示是否可将对象变为不可修改。

(继承自 Freezable)
ColorContexts

在派生类中重写时,获取与此 ColorContext 关联的 BitmapFrame 对象的集合。

Decoder

在派生类中重写时,获取与此 BitmapFrame 实例关联的解码器。

DependencyObjectType

获取 DependencyObjectType 包装此实例的 CLR 类型的 。

(继承自 DependencyObject)
Dispatcher

获取与此 Dispatcher 关联的 DispatcherObject

(继承自 DispatcherObject)
DpiX

获取图像) dpi (英寸的水平点数。

(继承自 BitmapSource)
DpiY

获取图像的每英寸垂直点数 (dpi) 。

(继承自 BitmapSource)
Format

获取位图数据的本机 PixelFormat

(继承自 BitmapSource)
HasAnimatedProperties

获取一个值,该值指示一个或多个 AnimationClock 对象是否与此对象的任何依赖项属性相关联。

(继承自 Animatable)
Height

获取源位图的高度(以与设备无关的单位 (每单位) 1/96 英寸)。

(继承自 BitmapSource)
IsDownloading

获取一个值,该值指示 BitmapSource 内容当前是否正在下载。

(继承自 BitmapSource)
IsFrozen

获取一个值,该值指示对象当前是否可修改。

(继承自 Freezable)
IsSealed

获取一个值,该值指示此实例当前是否为密封的(只读)。

(继承自 DependencyObject)
Metadata

获取与此位图图像关联的元数据。

(继承自 BitmapSource)
Palette

获取位图的调色板(如果指定了调色板)。

(继承自 BitmapSource)
PixelHeight

获取位图的高度(以像素为单位)。

(继承自 BitmapSource)
PixelWidth

获取位图的宽度(以像素为单位)。

(继承自 BitmapSource)
Thumbnail

在派生类中重写时,获取与此 BitmapFrame 关联的缩略图。

Width

获取位图的宽度(以与设备无关的单位 (每单位) 1/96 英寸)。

(继承自 BitmapSource)

方法

ApplyAnimationClock(DependencyProperty, AnimationClock)

AnimationClock 应用到指定的 DependencyProperty。 如果该属性已进行动画处理,则使用 SnapshotAndReplace 切换行为。

(继承自 Animatable)
ApplyAnimationClock(DependencyProperty, AnimationClock, HandoffBehavior)

AnimationClock 应用到指定的 DependencyProperty。 如果该属性已进行动画处理,则使用指定的 HandoffBehavior

(继承自 Animatable)
BeginAnimation(DependencyProperty, AnimationTimeline)

将动画应用于指定 DependencyProperty。 动画会在呈现下一帧时启动。 如果指定属性已进行动画处理,则使用 SnapshotAndReplace 切换行为。

(继承自 Animatable)
BeginAnimation(DependencyProperty, AnimationTimeline, HandoffBehavior)

将动画应用于指定 DependencyProperty。 动画会在呈现下一帧时启动。 如果指定的属性已进行动画处理,则使用指定的 HandoffBehavior

(继承自 Animatable)
CheckAccess()

确定调用线程是否可以访问此 DispatcherObject

(继承自 DispatcherObject)
CheckIfSiteOfOrigin()

检查位图源内容是否来自已知源的站点。 此方法用于确保像素复制操作的安全。

(继承自 BitmapSource)
ClearValue(DependencyProperty)

清除属性的本地值。 要清除的属性由 DependencyProperty 标识符指定。

(继承自 DependencyObject)
ClearValue(DependencyPropertyKey)

清除只读属性的本地值。 要清除的属性由 DependencyPropertyKey 指定。

(继承自 DependencyObject)
Clone()

创建此 BitmapSource 的可修改克隆,从而深度复制此对象的值。 在复制依赖项属性时,此方法会复制资源引用和数据绑定(但可能不再解析),但不复制动画或其当前值。

(继承自 BitmapSource)
CloneCore(Freezable)

使此实例成为指定 BitmapSource 的深层副本。 在复制依赖项属性时,此方法会复制资源引用和数据绑定(但可能不再解析),但不复制动画或其当前值。

(继承自 BitmapSource)
CloneCurrentValue()

创建此 BitmapSource 对象的可修改复本,从而深度复制此对象的当前值。 不复制资源引用、数据绑定和动画,而是复制其当前值。

(继承自 BitmapSource)
CloneCurrentValueCore(Freezable)

使用当前的属性值使该实例成为指定 BitmapSource 的可修改深层副本。 不复制资源引用、数据绑定和动画,而是复制其当前值。

(继承自 BitmapSource)
CoerceValue(DependencyProperty)

对指定依赖属性的值进行强制。 通过对调用方 DependencyObject 上存在的依赖属性的属性元数据中所指定的任何 CoerceValueCallback 函数进行调用来完成此操作。

(继承自 DependencyObject)
CopyPixels(Array, Int32, Int32)

将位图像素数据复制到具有从指定偏移量开始的指定跨距的像素数组中。

(继承自 BitmapSource)
CopyPixels(Int32Rect, Array, Int32, Int32)

将指定矩形中的位图像素数据复制到具有从指定偏移量开始的指定跨距的像素数组中。

(继承自 BitmapSource)
CopyPixels(Int32Rect, IntPtr, Int32, Int32)

复制指定矩形中的位图像素数据。

(继承自 BitmapSource)
Create(BitmapSource)

使用指定的缩略图、 BitmapFrameBitmapSource

Create(BitmapSource, BitmapSource)

用指定的缩略图从给定的 BitmapFrame 创建新的 BitmapSource

Create(BitmapSource, BitmapSource, BitmapMetadata, ReadOnlyCollection<ColorContext>)

使用指定的缩略图、BitmapMetadataColorContext 从给定的 BitmapSource 创建新的 BitmapFrame

Create(Stream)

使用指定的缩略图、 BitmapFrameStream

Create(Stream, BitmapCreateOptions, BitmapCacheOption)

用指定的 BitmapFrameStream 从给定的 BitmapCreateOptions 创建新的 BitmapCacheOption

Create(Uri)

使用指定的缩略图、 BitmapFrameUri

Create(Uri, BitmapCreateOptions, BitmapCacheOption)

用指定的 BitmapFrameUri 从给定的 BitmapCreateOptions 创建 BitmapCacheOption

Create(Uri, BitmapCreateOptions, BitmapCacheOption, RequestCachePolicy)

用指定的 BitmapFrameUriBitmapCreateOptions 从给定的 BitmapCacheOption 创建 RequestCachePolicy

Create(Uri, RequestCachePolicy)

用指定的 BitmapFrame 从给定的 Uri 创建 RequestCachePolicy

CreateInPlaceBitmapMetadataWriter()

当在派生类中重写时,创建可用于将元数据与 BitmapFrame 进行关联的 InPlaceBitmapMetadataWriter 实例。

CreateInstance()

初始化 Freezable 类的新实例。

(继承自 Freezable)
CreateInstanceCore()

在派生类中实现时,创建 Freezable 派生类的新实例。

(继承自 Freezable)
Equals(Object)

确定提供的 DependencyObject 是否等效于当前 DependencyObject

(继承自 DependencyObject)
Freeze()

使当前对象不可修改,并且将其 IsFrozen 属性设置为 true

(继承自 Freezable)
FreezeCore(Boolean)

使 BitmapSource 实例或派生类为不可变的。

(继承自 BitmapSource)
GetAnimationBaseValue(DependencyProperty)

返回指定的 DependencyProperty 的未经过动画处理的值。

(继承自 Animatable)
GetAsFrozen()

使用基(未经过动画处理的)属性值创建 Freezable 的冻结副本。 由于副本已冻结,因此将通过引用复制任何冻结的子对象。

(继承自 Freezable)
GetAsFrozenCore(Freezable)

使此实例成为指定的 BitmapSource 对象的克隆。

(继承自 BitmapSource)
GetCurrentValueAsFrozen()

使用当前属性值创建 Freezable 的冻结副本。 由于副本已冻结,因此将通过引用复制任何冻结的子对象。

(继承自 Freezable)
GetCurrentValueAsFrozenCore(Freezable)

使此实例成为指定 BitmapSource 的冻结复本。 不复制资源引用、数据绑定和动画,而是复制其当前值。

(继承自 BitmapSource)
GetHashCode()

获取此 DependencyObject 的哈希代码。

(继承自 DependencyObject)
GetLocalValueEnumerator()

创建一个专用的枚举数,用于确定哪些依赖项属性在此 DependencyObject 上具有以本地方式设置的值。

(继承自 DependencyObject)
GetType()

获取当前实例的 Type

(继承自 Object)
GetValue(DependencyProperty)

DependencyObject 的此实例返回依赖属性的当前有效值。

(继承自 DependencyObject)
InvalidateProperty(DependencyProperty)

重新评估指定依赖属性的有效值。

(继承自 DependencyObject)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
OnChanged()

修改当前 Freezable 对象时调用。

(继承自 Freezable)
OnFreezablePropertyChanged(DependencyObject, DependencyObject)

确保为刚刚设置的 DependencyObjectType 数据成员建立适当的上下文指针。

(继承自 Freezable)
OnFreezablePropertyChanged(DependencyObject, DependencyObject, DependencyProperty)

此成员支持Windows Presentation Foundation (WPF) 基础结构,不应直接从代码中使用。

(继承自 Freezable)
OnPropertyChanged(DependencyPropertyChangedEventArgs)

重写 OnPropertyChanged(DependencyPropertyChangedEventArgs)DependencyObject 实现,以同时调用任何响应类型 Freezable 不断变化的依赖属性的 Changed 处理程序。

(继承自 Freezable)
ReadLocalValue(DependencyProperty)

如果存在,则返回依赖属性的本地值。

(继承自 DependencyObject)
ReadPreamble()

确保正在从有效的线程访问 FreezableFreezable 的继承者必须在任何 API 一开始读取不属于依赖项对象的数据成员时调用此方法。

(继承自 Freezable)
SetCurrentValue(DependencyProperty, Object)

设置依赖属性的值而不更改其值源。

(继承自 DependencyObject)
SetValue(DependencyProperty, Object)

设置依赖属性的本地值,该值由其依赖属性标识符指定。

(继承自 DependencyObject)
SetValue(DependencyPropertyKey, Object)

设置一个只读依赖属性的本地值,该值由依赖属性的 DependencyPropertyKey 标识符指定。

(继承自 DependencyObject)
ShouldSerializeProperty(DependencyProperty)

返回一个值,该值指示序列化进程是否应序列化所提供的依赖属性的值。

(继承自 DependencyObject)
ToString()

基于当前区域性创建此对象的字符串表示形式。

(继承自 ImageSource)
ToString(IFormatProvider)

基于传入的 IFormatProvider 创建此对象的字符串表示形式。 如果提供程序为 null,则使用 CurrentCulture

(继承自 ImageSource)
VerifyAccess()

强制调用线程具有此 DispatcherObject 的访问权限。

(继承自 DispatcherObject)
WritePostscript()

引发 FreezableChanged 事件并调用其 OnChanged() 方法。 从 Freezable 派生的类应在修改的类成员不存储为依赖属性的任何 API 的末尾调用此方法。

(继承自 Freezable)
WritePreamble()

验证 Freezable 是否未被冻结,并且是否正在从有效的线程上下文中访问它。 Freezable 的继承项应当在任何 API 一开始写入不属于依赖项属性的数据成员时调用此方法。

(继承自 Freezable)

事件

Changed

在修改 Freezable 或其包含的对象时发生。

(继承自 Freezable)
DecodeFailed

在由于图像标题损坏而无法下载图像时发生。

(继承自 BitmapSource)
DownloadCompleted

在下载完位图内容时发生。

(继承自 BitmapSource)
DownloadFailed

在无法下载位图内容时发生。

(继承自 BitmapSource)
DownloadProgress

在下载位图内容的进度有变化时发生。

(继承自 BitmapSource)

显式接口实现

IFormattable.ToString(String, IFormatProvider)

使用指定格式对当前实例的值设置格式。

(继承自 ImageSource)

适用于

另请参阅