Image.SetPropertyItem(PropertyItem) 方法

定义

在此 Image 中存储一个属性项(元数据片)。

C#
public void SetPropertyItem (System.Drawing.Imaging.PropertyItem propitem);

参数

propitem
PropertyItem

要存储的 PropertyItem

例外

此图像的图像格式不支持属性项。

示例

下面的代码示例演示如何使用 GetPropertyItemSetPropertyItem 方法。 此示例旨在与 Windows 窗体 一起使用。 若要运行此示例,请将其粘贴到窗体中,并通过调用 DemonstratePropertyItem 方法处理窗体的事件Paint,并将其ePaintEventArgs作为 传递。

C#
private void DemonstratePropertyItem(PaintEventArgs e)
{

    // Create two images.
    Image image1 = Image.FromFile("c:\\FakePhoto1.jpg");
    Image image2 = Image.FromFile("c:\\FakePhoto2.jpg");

    // Get a PropertyItem from image1.
    PropertyItem propItem = image1.GetPropertyItem(20624);

    // Change the ID of the PropertyItem.
    propItem.Id = 20625;

    // Set the PropertyItem for image2.
    image2.SetPropertyItem(propItem);

    // Draw the image.
    e.Graphics.DrawImage(image2, 20.0F, 20.0F);
}

注解

如果图像格式不支持属性项,此方法将 ArgumentException 引发消息“不支持属性”。如果图像格式支持属性项,但不支持尝试设置的特定属性,则此方法将忽略该尝试,但不引发异常。

很难设置属性项,因为 PropertyItem 类没有公共构造函数。 解决此限制的一种方法是通过检索PropertyItems属性值或调用GetPropertyItem已具有属性项的 的 Image 方法获取 PropertyItem 。 然后,可以设置 的 PropertyItem 字段并将其传递给 SetPropertyItem

适用于

产品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9