PixelFormat Yapı

Tanım

Görüntüler ve piksel tabanlı yüzeyler için piksel biçimini tanımlar.

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)
Devralma
PixelFormat
Öznitelikler
Uygulamalar

Örnekler

Aşağıdaki örnekte, bir PixelFormat oluşturma ve özelliklerinin değerini bulma adımları gösterilmektedir.

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

Açıklamalar

XAML Öznitelik Kullanımı

<object property="pixelFormat"/>  

XAML Değerleri

Pixelformat
sınıfı tarafından PixelFormats tanımlanan önceden tanımlanmış piksel biçimlerinden biri.

Özellikler

BitsPerPixel

Bu PixelFormatiçin piksel başına bit sayısını (bpp) alır.

Masks

ile PixelFormatilişkili bit maskeleri koleksiyonunu alır.

Yöntemler

Equals(Object)

Belirtilen nesnenin geçerli nesneye eşit olup olmadığını belirler.

Equals(PixelFormat)

Piksel biçiminin verilen PixelFormatbiçimine eşit olup olmadığını belirler.

Equals(PixelFormat, PixelFormat)

Belirtilen PixelFormat örneklerin eşit kabul edilip edilmeyeceğini belirler.

GetHashCode()

Bu piksel biçiminin Masks değerinden bir karma kodu oluşturur.

ToString()

Bu PixelFormatöğesinin dize gösterimini oluşturur.

İşleçler

Equality(PixelFormat, PixelFormat)

Eşitlik için iki PixelFormat örneği karşılaştırır.

Inequality(PixelFormat, PixelFormat)

Eşitsizlik için iki PixelFormat örneği karşılaştırır.

Şunlara uygulanır

Ayrıca bkz.