├── .github └── workflows │ └── codeql-analysis.yml ├── About.md ├── LICENSE ├── README.md ├── README_deutsch.md ├── code ├── OCRthyPDF.py ├── PySimpleGUI_4_60.py └── splitter.py ├── gui ├── ocrthypdf.desktop ├── ocrthypdf.png └── ocrthypdf.svg ├── licenses ├── Ghostscript_copyright ├── Leptonica_copyright ├── OCRmyPDF_copyright ├── PySimpleGUI_copyright ├── darkdetect_copyright ├── fonts-arkpandora_copyright ├── fonts-croscore_copyright ├── fonts-liberation2_copyright ├── icc-profiles-free_copyright ├── libxml2_copyright ├── pdftotext_copyright ├── pngquant_copyright ├── python3_copyright ├── pyzbar_copyright ├── qpdf_copyright ├── tesseract_copyright ├── tesseract_languages ├── zbar-library_copyright └── zlib1g_copyright ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── Readme.md ├── snapcraft.yaml └── testing ├── AI_generated_text.pdf ├── Example.pdf ├── Example_Sticker_Mode.pdf ├── Readme.md ├── Separator.pdf ├── Separator_Page_Areas.odt ├── Separator_Page_Template.odt └── barcodesQR.zip /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /About.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/README.md -------------------------------------------------------------------------------- /README_deutsch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/README_deutsch.md -------------------------------------------------------------------------------- /code/OCRthyPDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/code/OCRthyPDF.py -------------------------------------------------------------------------------- /code/PySimpleGUI_4_60.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/code/PySimpleGUI_4_60.py -------------------------------------------------------------------------------- /code/splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/code/splitter.py -------------------------------------------------------------------------------- /gui/ocrthypdf.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/gui/ocrthypdf.desktop -------------------------------------------------------------------------------- /gui/ocrthypdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/gui/ocrthypdf.png -------------------------------------------------------------------------------- /gui/ocrthypdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/gui/ocrthypdf.svg -------------------------------------------------------------------------------- /licenses/Ghostscript_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/Ghostscript_copyright -------------------------------------------------------------------------------- /licenses/Leptonica_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/Leptonica_copyright -------------------------------------------------------------------------------- /licenses/OCRmyPDF_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/OCRmyPDF_copyright -------------------------------------------------------------------------------- /licenses/PySimpleGUI_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/PySimpleGUI_copyright -------------------------------------------------------------------------------- /licenses/darkdetect_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/darkdetect_copyright -------------------------------------------------------------------------------- /licenses/fonts-arkpandora_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/fonts-arkpandora_copyright -------------------------------------------------------------------------------- /licenses/fonts-croscore_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/fonts-croscore_copyright -------------------------------------------------------------------------------- /licenses/fonts-liberation2_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/fonts-liberation2_copyright -------------------------------------------------------------------------------- /licenses/icc-profiles-free_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/icc-profiles-free_copyright -------------------------------------------------------------------------------- /licenses/libxml2_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/libxml2_copyright -------------------------------------------------------------------------------- /licenses/pdftotext_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/pdftotext_copyright -------------------------------------------------------------------------------- /licenses/pngquant_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/pngquant_copyright -------------------------------------------------------------------------------- /licenses/python3_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/python3_copyright -------------------------------------------------------------------------------- /licenses/pyzbar_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/pyzbar_copyright -------------------------------------------------------------------------------- /licenses/qpdf_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/qpdf_copyright -------------------------------------------------------------------------------- /licenses/tesseract_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/tesseract_copyright -------------------------------------------------------------------------------- /licenses/tesseract_languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/tesseract_languages -------------------------------------------------------------------------------- /licenses/zbar-library_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/zbar-library_copyright -------------------------------------------------------------------------------- /licenses/zlib1g_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/licenses/zlib1g_copyright -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/Readme.md: -------------------------------------------------------------------------------- 1 | Some screenshots... 2 | -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /testing/AI_generated_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/testing/AI_generated_text.pdf -------------------------------------------------------------------------------- /testing/Example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/testing/Example.pdf -------------------------------------------------------------------------------- /testing/Example_Sticker_Mode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/testing/Example_Sticker_Mode.pdf -------------------------------------------------------------------------------- /testing/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/testing/Readme.md -------------------------------------------------------------------------------- /testing/Separator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/testing/Separator.pdf -------------------------------------------------------------------------------- /testing/Separator_Page_Areas.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/testing/Separator_Page_Areas.odt -------------------------------------------------------------------------------- /testing/Separator_Page_Template.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/testing/Separator_Page_Template.odt -------------------------------------------------------------------------------- /testing/barcodesQR.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidigital/OCRthyPDF-Essentials/HEAD/testing/barcodesQR.zip --------------------------------------------------------------------------------