├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── PDF2PDFOCR GUI.lnk ├── README.md ├── [Deprecated] Installing Windows tools for pdf2pdfocr.odt ├── docker-wrapper.sh ├── install_command ├── install_windows.txt ├── pdf2pdfocr ├── pdf2pdfocr.py ├── pdf2pdfocr.vbs ├── pdf2pdfocr_gui ├── pdf2pdfocr_gui.py ├── pdf2pdfocr_multibackground.py ├── pix_qrcode.png ├── requirements.txt └── requirements_gui.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/LICENSE -------------------------------------------------------------------------------- /PDF2PDFOCR GUI.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/PDF2PDFOCR GUI.lnk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/README.md -------------------------------------------------------------------------------- /[Deprecated] Installing Windows tools for pdf2pdfocr.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/[Deprecated] Installing Windows tools for pdf2pdfocr.odt -------------------------------------------------------------------------------- /docker-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/docker-wrapper.sh -------------------------------------------------------------------------------- /install_command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/install_command -------------------------------------------------------------------------------- /install_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/install_windows.txt -------------------------------------------------------------------------------- /pdf2pdfocr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/pdf2pdfocr -------------------------------------------------------------------------------- /pdf2pdfocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/pdf2pdfocr.py -------------------------------------------------------------------------------- /pdf2pdfocr.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/pdf2pdfocr.vbs -------------------------------------------------------------------------------- /pdf2pdfocr_gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/pdf2pdfocr_gui -------------------------------------------------------------------------------- /pdf2pdfocr_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/pdf2pdfocr_gui.py -------------------------------------------------------------------------------- /pdf2pdfocr_multibackground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/pdf2pdfocr_multibackground.py -------------------------------------------------------------------------------- /pix_qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/pix_qrcode.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_gui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoFCardoso/pdf2pdfocr/HEAD/requirements_gui.txt --------------------------------------------------------------------------------