FileFormat
BmpImage.FileFormat property
Ruft einen Wert von Dateiformat ab
public override FileFormat FileFormat { get; }
Beispiele
Das folgende Beispiel zeigt, wie Sie Informationen über das Rohdatenformat und den Alphakanal aus einem BMP-Bild extrahieren.
[C#]
// Erstellen Sie ein 32-bpp-BMP-Bild mit 100 x 100 px.
using (Aspose.Imaging.FileFormats.Bmp.BmpImage bmpImage = new Aspose.Imaging.FileFormats.Bmp.BmpImage(100, 100, 32, null))
{
System.Console.WriteLine("FileFormat={0}, RawDataFormat={1}, HasAlpha={2}", bmpImage.FileFormat, bmpImage.RawDataFormat, bmpImage.HasAlpha);
};
// Erstellen Sie ein 24-bpp-BMP-Bild mit 100 x 100 px.
using (Aspose.Imaging.FileFormats.Bmp.BmpImage bmpImage = new Aspose.Imaging.FileFormats.Bmp.BmpImage(100, 100, 24, null))
{
System.Console.WriteLine("FileFormat={0}, RawDataFormat={1}, HasAlpha={2}", bmpImage.FileFormat, bmpImage.RawDataFormat, bmpImage.HasAlpha);
};
// Im Allgemeinen unterstützt BMP keinen Alphakanal, daher sieht die Ausgabe so aus:
// FileFormat = Bmp, RawDataFormat = Rgb32Bpp, verwendete Kanäle: 8,8,8,8, HasAlpha = False
// FileFormat = Bmp, RawDataFormat = Rgb24Bpp, verwendete Kanäle: 8,8,8, HasAlpha = False
Siehe auch
- enum FileFormat
- class BmpImage
- namensraum Aspose.Imaging.FileFormats.Bmp
- Montage Aspose.Imaging