Files
OCR_Decode/OCR_Decode/DriverSector1Window.cs
T

23 lines
511 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OCR_Decode
{
internal class DriverSector1Window : Window
{
public DriverSector1Window(Bitmap image, Rectangle bounds) : base(image, bounds)
{
Name = "Sector 1";
}
public override object DecodePng()
{
int result = GetTimeFromPng(WindowImage);
return result;
}
}
}