Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions utils/ocr.simba
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ type
BOLD_SHADOW: TPixelFont;
QUILL_8: TPixelFont;
QUILL: TPixelFont;
VERDANA_13: TPixelFont;
VERDANA_13_Bold:TPixelFont;
VERDANA_15: TPixelFont;
Unzipping: Boolean;
Timeout: TCountDown;

Expand Down Expand Up @@ -126,6 +129,10 @@ begin

Self.QUILL_8 := OCR.Engine.LoadFont(Self.PATH + 'Quill 8', 4);
Self.QUILL := OCR.Engine.LoadFont(Self.PATH + 'Quill', 4);

Self.VERDANA_13 := OCR.Engine.LoadFont(Self.PATH + 'Verdana 13', 4);
Self.VERDANA_13_Bold := OCR.Engine.LoadFont(Self.PATH + 'Verdana 13 Bold', 4);
Self.VERDANA_15 := OCR.Engine.LoadFont(Self.PATH + 'Verdana 15', 4);
end;

procedure TRSFonts._UnzipFinished(constref result: TASyncUnzipResult);
Expand Down