HasAlpha

PngImage.HasAlpha property

Ruft einen Wert ab, der angibt, ob diese Instanz alpha hat.

public override bool HasAlpha { get; }

Eigentumswert

Stimmt wenn diese Instanz Alpha hat; Andernfalls,FALSCH .

Beispiele

Das folgende Beispiel zeigt, wie überprüft wird, ob ein PNG-Bild Alphakanäle unterstützt.

[C#]

// Alle unterstützten PNG-Farbtypen abrufen.
System.Array colorTypes = System.Enum.GetValues(typeof(Aspose.Imaging.FileFormats.Png.PngColorType));

foreach (Aspose.Imaging.FileFormats.Png.PngColorType colorType in colorTypes)
{
    Aspose.Imaging.ImageOptions.PngOptions createOptions = new Aspose.Imaging.ImageOptions.PngOptions();
    createOptions.Source = new Sources.StreamSource(new System.IO.MemoryStream());
    createOptions.ColorType = colorType;

    using (Aspose.Imaging.Image image = Image.Create(createOptions, 100, 100))
    {
        Aspose.Imaging.FileFormats.Png.PngImage pngImage = (Aspose.Imaging.FileFormats.Png.PngImage)image;

        if (pngImage.HasAlpha)
        {
            System.Console.WriteLine("A {0} PNG image supports alpha channel", createOptions.ColorType);
        }
        else
        {
            System.Console.WriteLine("A {0} PNG image doesn't support alpha channel", createOptions.ColorType);
        }
    }
}

// Die Ausgabe sieht so aus:
// Ein Graustufen-PNG-Bild unterstützt keinen Alphakanal
// Ein Truecolor-PNG-Bild unterstützt keinen Alphakanal
// Ein IndexedColor PNG-Bild unterstützt keinen Alphakanal
// Ein GrayscaleWithAlpha PNG-Bild unterstützt den Alphakanal
// Ein TruecolorWithAlpha PNG-Bild unterstützt Alphakanal

Siehe auch