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