Releases: ollydev/libTesseract
Releases · ollydev/libTesseract
Release 6
Release 5
Simplify tesseract building.
Now built without a lot of (optional) features which makes static linking much easier.
'--without-libpng' '--without-zlib' '--without-jpeg' '--without-libtiff' '--without-giflib' '--without-libwebp' '--without-libwebpmux' '--without-libopenjpeg'
'--disable-legacy' '--disable-graphics' '--disable-openmp' '--without-curl' '--without-archive'
All building is done on github actions here: https://github.com/ollydev/libTesseract/tree/master/.github/workflows
Added Linux-aarch64 build.
Release 4
Any tesseract and dependency exports should now be accessible.
Lib := LoadLibrary('libtesseract64.dll');
GetProcAddress(lib, 'TessBaseAPICreate'); // Tesseract
GetProcAddress(lib, 'pixCreate'); // Leptonica
GetProcAddress(lib, 'ZSTD_versionNumber'); // ZSTD
// etc
Release 3
Release 2
Release 1
- MacOS is not tested - can't test since it won't run on older macOS versions: SoftwareNetwork/sw#51
- Linux binary is large due to static linking not working without
--whole-archive
need to look into this.