BitmapPalettes.Halftone216Transparent 属性

定义

获取一个值,该值表示包含 216 种基本色、16 种系统颜色和另外 1 种透明色的调色板。 调色板中的重复颜色已移除。 此调色板中共有 225 种颜色。

public:
 static property System::Windows::Media::Imaging::BitmapPalette ^ Halftone216Transparent { System::Windows::Media::Imaging::BitmapPalette ^ get(); };
public static System.Windows.Media.Imaging.BitmapPalette Halftone216Transparent { get; }
static member Halftone216Transparent : System.Windows.Media.Imaging.BitmapPalette
Public Shared ReadOnly Property Halftone216Transparent As BitmapPalette

属性值

BitmapPalette 的一个实例。

示例

下面的代码示例演示如何使用 类的 BitmapPalettes 成员构造新的 BitmapSource 。 尽管此示例演示如何使用 WebPalette 属性,但你可以以类似的方式使用 类的任何成员 BitmapPalettes

BitmapSource image5 = BitmapSource.Create(
    width,
    height,
    96,
    96,
    PixelFormats.Indexed1,
    BitmapPalettes.WebPalette,
    pixels,
    stride);

FileStream stream5 = new FileStream("palette.tif", FileMode.Create);
TiffBitmapEncoder encoder5 = new TiffBitmapEncoder();
encoder5.Frames.Add(BitmapFrame.Create(image5));
encoder5.Save(stream5);
Dim image5 As BitmapSource = System.Windows.Media.Imaging.BitmapSource.Create(width, height, 96, 96, PixelFormats.Indexed1, BitmapPalettes.WebPalette, pixels, stride)

Dim stream5 As New FileStream("palette.tif", FileMode.Create)
Dim encoder5 As New TiffBitmapEncoder()
encoder5.Frames.Add(BitmapFrame.Create(image5))
encoder5.Save(stream5)

注解

BitmapPalettes 名称以“Transparent”结尾的属性具有完全透明的附加“颜色”。 对于已有 256 种颜色的调色板,最后一种颜色将替换为透明色。

适用于

另请参阅