BitmapPalettes.BlackAndWhite Propiedad

Definición

Obtiene un valor que representa una paleta de colores blanco y negro. Esta paleta se compone de 2 colores en total.

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

Valor de propiedad

BitmapPalette

Instancia de BitmapPalette.

Ejemplos

En el ejemplo de código siguiente se muestra cómo construir un nuevo BitmapSource mediante un miembro de la BitmapPalettes clase . Aunque en este ejemplo se muestra cómo usar la WebPalette propiedad , puede usar cualquier miembro de la BitmapPalettes clase de una manera similar.

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)

Se aplica a

Consulte también