├── .gitignore ├── ABOUT.md ├── LICENSE ├── README.md ├── app_converter.py ├── convert_gui_to_english.py ├── convert_to_english.py ├── format_converter.py ├── install_and_run.bat ├── project_check_report.md ├── requirements.txt ├── run_app.py └── test_doc_conversion.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Passwerob/Image-format-conversion-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /ABOUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Passwerob/Image-format-conversion-plugin/HEAD/ABOUT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Passwerob/Image-format-conversion-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Passwerob/Image-format-conversion-plugin/HEAD/README.md -------------------------------------------------------------------------------- /app_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Passwerob/Image-format-conversion-plugin/HEAD/app_converter.py -------------------------------------------------------------------------------- /convert_gui_to_english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Passwerob/Image-format-conversion-plugin/HEAD/convert_gui_to_english.py -------------------------------------------------------------------------------- /convert_to_english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Passwerob/Image-format-conversion-plugin/HEAD/convert_to_english.py -------------------------------------------------------------------------------- /format_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Passwerob/Image-format-conversion-plugin/HEAD/format_converter.py -------------------------------------------------------------------------------- /install_and_run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Passwerob/Image-format-conversion-plugin/HEAD/install_and_run.bat -------------------------------------------------------------------------------- /project_check_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Passwerob/Image-format-conversion-plugin/HEAD/project_check_report.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Passwerob/Image-format-conversion-plugin/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Passwerob/Image-format-conversion-plugin/HEAD/run_app.py -------------------------------------------------------------------------------- /test_doc_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Passwerob/Image-format-conversion-plugin/HEAD/test_doc_conversion.py --------------------------------------------------------------------------------