FileFormat

BmpImage.FileFormat property

Får värdet filformat

public override FileFormat FileFormat { get; }

Exempel

Följande exempel visar hur man extraherar information om rådataformat och alfakanal från en BMP-bild.

[C#]

// Skapa en 32-bitars BMP-bild på 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);
};

// Skapa en 24-bitars BMP-bild på 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);
};

// Generellt stöder BMP inte alfakanal så resultatet kommer att se ut så här:
// FileFormat = Bmp, RawDataFormat = Rgb32Bpp, använda kanaler: 8,8,8,8, HasAlpha = False
// FileFormat = Bmp, RawDataFormat = Rgb24Bpp, använda kanaler: 8,8,8, HasAlpha = False

Se även