| 1234567891011121314151617181920 |
- #pragma once
- #include "../pch/pch.h"
- class CBitmapHelper
- {
- public:
- CBitmapHelper();
- ~CBitmapHelper();
- int SaveBitmapToFile(HBITMAP hBitmap, LPCWSTR lpFileName);
- HBITMAP Scale(HBITMAP srcBitmap, int MaxWidth, int MaxHeight);
- HBITMAP CopyScreenToBitmap(LPRECT lpRect);
- bool OcrRect(tesseract::TessBaseAPI& tess, LPRECT lpRect, std::string& result);
- };
|