Leer en inglés

Compartir a través de


PixelFormat Estructura

Definición

Define un formato de píxel para las imágenes y las superficies basadas en píxeles.

C#
[System.ComponentModel.TypeConverter(typeof(System.Windows.Media.PixelFormatConverter))]
[System.Serializable]
public struct PixelFormat : IEquatable<System.Windows.Media.PixelFormat>
C#
[System.ComponentModel.TypeConverter(typeof(System.Windows.Media.PixelFormatConverter))]
public struct PixelFormat : IEquatable<System.Windows.Media.PixelFormat>
Herencia
PixelFormat
Atributos
Implementaciones

Ejemplos

En el ejemplo siguiente se muestra cómo crear y PixelFormat buscar el valor de sus propiedades.

C#
public PixelFormat createPixelFormat()
{
    // Create a PixelFormat object.
    PixelFormat myPixelFormat = new PixelFormat();
    
    // Make this PixelFormat a Gray32Float pixel format.
    myPixelFormat = PixelFormats.Gray32Float;

    // Get the number of bits-per-pixel for this format. Because
    // the format is "Gray32Float", the float value returned will be 32.
    int bpp = myPixelFormat.BitsPerPixel;

    // Get the collection of masks associated with this format.
    IList<PixelFormatChannelMask> myChannelMaskCollection = myPixelFormat.Masks;

    // Capture the mask info in a string.
    String stringOfValues = " ";
    foreach (PixelFormatChannelMask myMask in myChannelMaskCollection)
    {
        IList<byte> myBytesCollection = myMask.Mask;
        foreach (byte myByte in myBytesCollection)
        {
            stringOfValues = stringOfValues + myByte.ToString();
        }
    }

    // Return the PixelFormat which, for example, could be 
    // used to set the pixel format of a bitmap by using it to set
    // the DestinationFormat of a FormatConvertedBitmap.
    return myPixelFormat;
}

Comentarios

Uso de atributos XAML

<object property="pixelFormat"/>  

Valores XAML

pixelFormat
Uno de los formatos de píxel predefinidos definidos por la PixelFormats clase .

Propiedades

BitsPerPixel

Obtiene el número de bits por píxel (bpp) para este objeto PixelFormat.

Masks

Obtiene una colección de máscaras de bits asociadas al objeto PixelFormat.

Métodos

Equals(Object)

Determina si el objeto especificado es igual que el objeto actual.

Equals(PixelFormat)

Determina si el formato de píxel es igual al objeto PixelFormat dado.

Equals(PixelFormat, PixelFormat)

Determina si las instancias de PixelFormat especificadas se consideran iguales.

GetHashCode()

Crea un código hash a partir del valor de Masks de este formato de píxel.

ToString()

Crea una representación de cadena de este objeto PixelFormat.

Operadores

Equality(PixelFormat, PixelFormat)

Compara dos instancias de PixelFormat para determinar si sus valores son iguales.

Inequality(PixelFormat, PixelFormat)

Compara dos instancias de PixelFormat para determinar si no son iguales.

Se aplica a

Producto Versiones
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7

Consulte también