BitmapPalettes.Halftone64Transparent 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,该值表示包含 64 种基本色和 16 种系统颜色(重复颜色已移除)以及另外 1 种透明色的调色板。 此调色板中共有 73 种颜色。
public:
static property System::Windows::Media::Imaging::BitmapPalette ^ Halftone64Transparent { System::Windows::Media::Imaging::BitmapPalette ^ get(); };
public static System.Windows.Media.Imaging.BitmapPalette Halftone64Transparent { get; }
static member Halftone64Transparent : System.Windows.Media.Imaging.BitmapPalette
Public Shared ReadOnly Property Halftone64Transparent 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 种颜色的调色板,最后一种颜色将替换为透明色。