mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
21 lines
607 B
C#
21 lines
607 B
C#
using System;
|
|
|
|
namespace Nikse.SubtitleEdit.Core
|
|
{
|
|
public class BmpReader
|
|
{
|
|
public string HeaderId { get; private set; }
|
|
public UInt32 HeaderFileSize { get; private set; }
|
|
public UInt32 OffsetToPixelArray { get; private set; }
|
|
|
|
public BmpReader(string fileName)
|
|
{
|
|
byte[] buffer = System.IO.File.ReadAllBytes(fileName);
|
|
HeaderId = System.Text.Encoding.UTF8.GetString(buffer, 0, 2);
|
|
HeaderFileSize = BitConverter.ToUInt32(buffer, 2);
|
|
OffsetToPixelArray = BitConverter.ToUInt32(buffer, 0xa);
|
|
}
|
|
|
|
}
|
|
}
|