mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 11:42:36 +01:00
20 lines
560 B
C#
20 lines
560 B
C#
using System;
|
|
|
|
namespace Nikse.SubtitleEdit.Core
|
|
{
|
|
public class BmpReader
|
|
{
|
|
public string HeaderId { get; }
|
|
public uint HeaderFileSize { get; }
|
|
public uint OffsetToPixelArray { get; }
|
|
|
|
public BmpReader(string fileName)
|
|
{
|
|
var 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);
|
|
}
|
|
}
|
|
}
|