BitmapPalettes.Halftone64 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,此值表示包含 64 種主要色彩和 16 種系統色彩的色板,其中重複的色彩都已移除。 這個調色盤共有 72 種色彩。
public:
static property System::Windows::Media::Imaging::BitmapPalette ^ Halftone64 { System::Windows::Media::Imaging::BitmapPalette ^ get(); };
public static System.Windows.Media.Imaging.BitmapPalette Halftone64 { get; }
static member Halftone64 : System.Windows.Media.Imaging.BitmapPalette
Public Shared ReadOnly Property Halftone64 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)