PixelFormat Struct

Definizione

Definisce un formato pixel per le immagini e le superfici basate su pixel.

public value class PixelFormat : IEquatable<System::Windows::Media::PixelFormat>
[System.ComponentModel.TypeConverter(typeof(System.Windows.Media.PixelFormatConverter))]
[System.Serializable]
public struct PixelFormat : IEquatable<System.Windows.Media.PixelFormat>
[System.ComponentModel.TypeConverter(typeof(System.Windows.Media.PixelFormatConverter))]
public struct PixelFormat : IEquatable<System.Windows.Media.PixelFormat>
[<System.ComponentModel.TypeConverter(typeof(System.Windows.Media.PixelFormatConverter))>]
[<System.Serializable>]
type PixelFormat = struct
[<System.ComponentModel.TypeConverter(typeof(System.Windows.Media.PixelFormatConverter))>]
type PixelFormat = struct
Public Structure PixelFormat
Implements IEquatable(Of PixelFormat)
Ereditarietà
PixelFormat
Attributi
Implementazioni

Esempio

Nell'esempio seguente viene illustrato come creare un oggetto PixelFormat e trovare il valore delle relative proprietà.

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;
}
        Public Function createPixelFormat() As PixelFormat
            ' Create a PixelFormat object.
            Dim myPixelFormat As 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.
            Dim bpp As Integer = myPixelFormat.BitsPerPixel

            ' Get the collection of masks associated with this format.
            Dim myChannelMaskCollection As IList(Of PixelFormatChannelMask) = (myPixelFormat.Masks)

            ' Capture the mask info in a string.
            Dim stringOfValues As String = " "
            Dim myMask As PixelFormatChannelMask
            For Each myMask In myChannelMaskCollection
                Dim myBytesCollection As IList(Of Byte) = myMask.Mask
                Dim myByte As Byte
                For Each myByte In myBytesCollection
                    stringOfValues = stringOfValues + myByte.ToString()
                Next myByte
            Next myMask

            ' 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

        End Function 'createPixelFormat
    End Class
End Namespace 'ImagingSnippetGallery

Commenti

Uso della sintassi XAML per gli attributi

<object property="pixelFormat"/>  

Valori XAML

Pixelformat
Uno dei formati pixel predefiniti definiti dalla PixelFormats classe.

Proprietà

BitsPerPixel

Ottiene il numero di bit per pixel (bpp) per PixelFormat.

Masks

Ottiene un insieme di maschere di bit associate all'oggetto PixelFormat.

Metodi

Equals(Object)

Determina se l'oggetto specificato è uguale all'oggetto corrente.

Equals(PixelFormat)

Determina se il formato pixel è uguale all'oggetto PixelFormat specificato.

Equals(PixelFormat, PixelFormat)

Determina se le istanze di PixelFormat specificate sono considerate uguali.

GetHashCode()

Crea un codice hash dal valore Masks di questo formato pixel.

ToString()

Crea una rappresentazione in forma di stringa di PixelFormat.

Operatori

Equality(PixelFormat, PixelFormat)

Verifica l'uguaglianza tra due istanze di PixelFormat.

Inequality(PixelFormat, PixelFormat)

Verifica l'ineguaglianza tra due istanze di PixelFormat.

Si applica a

Vedi anche