├── .gitattributes ├── .gitignore ├── Delphinus.Info.json ├── Delphinus.Install.json ├── Demo ├── Unit4.dfm ├── Unit4.pas ├── ocrdemo.dpr ├── ocrdemo.dproj ├── ocrdemo.dproj.local ├── ocrdemo.ficfg ├── ocrdemo.identcache ├── ocrdemo.res ├── ocrdemo.stat └── test.tif ├── Logo.jpg ├── README.md ├── Source ├── TOCRDLL.pas ├── tocr.bmp ├── transymocr.dpk ├── transymocr.dproj ├── transymocr.dproj.local ├── transymocr.dres ├── transymocr.ficfg ├── transymocr.identcache ├── transymocr.pas ├── transymocr.res ├── transymocr.stat ├── transymocrResource.rc └── ttransymocr.pas ├── license.txt ├── ocrproject.groupproj ├── ocrproject.groupproj.local ├── ocrproject_prjgroup.tvsconfig └── screenshot1.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/.gitignore -------------------------------------------------------------------------------- /Delphinus.Info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Delphinus.Info.json -------------------------------------------------------------------------------- /Delphinus.Install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Delphinus.Install.json -------------------------------------------------------------------------------- /Demo/Unit4.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Demo/Unit4.dfm -------------------------------------------------------------------------------- /Demo/Unit4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Demo/Unit4.pas -------------------------------------------------------------------------------- /Demo/ocrdemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Demo/ocrdemo.dpr -------------------------------------------------------------------------------- /Demo/ocrdemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Demo/ocrdemo.dproj -------------------------------------------------------------------------------- /Demo/ocrdemo.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Demo/ocrdemo.dproj.local -------------------------------------------------------------------------------- /Demo/ocrdemo.ficfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Demo/ocrdemo.ficfg -------------------------------------------------------------------------------- /Demo/ocrdemo.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Demo/ocrdemo.identcache -------------------------------------------------------------------------------- /Demo/ocrdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Demo/ocrdemo.res -------------------------------------------------------------------------------- /Demo/ocrdemo.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Demo/ocrdemo.stat -------------------------------------------------------------------------------- /Demo/test.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Demo/test.tif -------------------------------------------------------------------------------- /Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Logo.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/README.md -------------------------------------------------------------------------------- /Source/TOCRDLL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Source/TOCRDLL.pas -------------------------------------------------------------------------------- /Source/tocr.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Source/tocr.bmp -------------------------------------------------------------------------------- /Source/transymocr.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Source/transymocr.dpk -------------------------------------------------------------------------------- /Source/transymocr.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Source/transymocr.dproj -------------------------------------------------------------------------------- /Source/transymocr.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Source/transymocr.dproj.local -------------------------------------------------------------------------------- /Source/transymocr.dres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Source/transymocr.dres -------------------------------------------------------------------------------- /Source/transymocr.ficfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Source/transymocr.ficfg -------------------------------------------------------------------------------- /Source/transymocr.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Source/transymocr.identcache -------------------------------------------------------------------------------- /Source/transymocr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Source/transymocr.pas -------------------------------------------------------------------------------- /Source/transymocr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Source/transymocr.res -------------------------------------------------------------------------------- /Source/transymocr.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Source/transymocr.stat -------------------------------------------------------------------------------- /Source/transymocrResource.rc: -------------------------------------------------------------------------------- 1 | TTransymOCR BITMAP "tocr.bmp" 2 | -------------------------------------------------------------------------------- /Source/ttransymocr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/Source/ttransymocr.pas -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/license.txt -------------------------------------------------------------------------------- /ocrproject.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/ocrproject.groupproj -------------------------------------------------------------------------------- /ocrproject.groupproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/ocrproject.groupproj.local -------------------------------------------------------------------------------- /ocrproject_prjgroup.tvsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/ocrproject_prjgroup.tvsconfig -------------------------------------------------------------------------------- /screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffsmith82/DelphiTransymOCR/HEAD/screenshot1.png --------------------------------------------------------------------------------