BitmapInfoHeader
BmpImage.BitmapInfoHeader property
Bitmap bilgi başlığını alır.
public BitmapInfoHeader BitmapInfoHeader { get; }
Mülk değeri
Bit eşlem bilgi üstbilgisi.
Örnekler
Aşağıdaki örnek, BMP başlığından bilgileri alır ve konsola yazdırır.
[C#]
using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Load(@"c:\temp\sample.bmp"))
{
Aspose.Imaging.FileFormats.Bmp.BmpImage bmpImage = (Aspose.Imaging.FileFormats.Bmp.BmpImage)image;
Aspose.Imaging.FileFormats.Bmp.BitmapInfoHeader header = bmpImage.BitmapInfoHeader;
System.Console.WriteLine("The number of palette colors that are required for displaying the bitmap: {0}", header.BitmapColorsImportant);
System.Console.WriteLine("The number of palette colors used in the bitmap: {0}", header.BitmapColorsUsed);
System.Console.WriteLine("The bitmap compression: {0}", header.BitmapCompression);
System.Console.WriteLine("The bitmap height: {0}", header.BitmapHeight);
System.Console.WriteLine("The bitmap width: {0}", header.BitmapWidth);
System.Console.WriteLine("The bitmap raw data size in bytes: {0}", header.BitmapImageSize);
System.Console.WriteLine("The number of planes: {0}", header.BitmapPlanes);
System.Console.WriteLine("The horizontal resolution of the bitmap, in pixels-per-meter: {0}", header.BitmapXPelsPerMeter);
System.Console.WriteLine("The vertical resolution of the bitmap, in pixels-per-meter: {0}", header.BitmapYPelsPerMeter);
System.Console.WriteLine("The number of bits per pixel: {0}", header.BitsPerPixel);
System.Console.WriteLine("The extra bits masks: {0}", header.ExtraBitMasks);
System.Console.WriteLine("The header size in bytes: {0}", header.HeaderSize);
}
// Çıktı şöyle görünebilir:
//Bitmap'i görüntülemek için gerekli olan palet renklerinin sayısı: 0
//Bitmap'te kullanılan palet renklerinin sayısı: 0
//Bitmap sıkıştırması: 0
//Bit eşlem yüksekliği: 375
//Bit eşlem genişliği: 500
//bayt cinsinden bitmap ham veri boyutu: 562500
//Uçak sayısı: 1
// Metre başına piksel cinsinden bitmap'in yatay çözünürlüğü: 0
// Metre başına piksel cinsinden bitmap'in dikey çözünürlüğü: 0
//Piksel başına bit sayısı: 24
//Ekstra bit maskeleri:
//Bayt cinsinden başlık boyutu: 40
Ayrıca bakınız
- class BitmapInfoHeader
- class BmpImage
- ad alanı Aspose.Imaging.FileFormats.Bmp
- toplantı Aspose.Imaging