├── .gitignore ├── LICENSE ├── Readme.md ├── converter.py ├── doc ├── example.png ├── gui_example.png ├── vt_heic_console.png └── vt_heic_gui.png ├── heicConverter.py ├── heicConverterGui.py ├── requirements.txt ├── test └── create_test_heic.py └── test_converter.py /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | build 3 | *.spec 4 | .idea 5 | tests 6 | *venv/ 7 | __pycache__/ 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschiwy/HeicConverter/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschiwy/HeicConverter/HEAD/Readme.md -------------------------------------------------------------------------------- /converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschiwy/HeicConverter/HEAD/converter.py -------------------------------------------------------------------------------- /doc/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschiwy/HeicConverter/HEAD/doc/example.png -------------------------------------------------------------------------------- /doc/gui_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschiwy/HeicConverter/HEAD/doc/gui_example.png -------------------------------------------------------------------------------- /doc/vt_heic_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschiwy/HeicConverter/HEAD/doc/vt_heic_console.png -------------------------------------------------------------------------------- /doc/vt_heic_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschiwy/HeicConverter/HEAD/doc/vt_heic_gui.png -------------------------------------------------------------------------------- /heicConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschiwy/HeicConverter/HEAD/heicConverter.py -------------------------------------------------------------------------------- /heicConverterGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschiwy/HeicConverter/HEAD/heicConverterGui.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschiwy/HeicConverter/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/create_test_heic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschiwy/HeicConverter/HEAD/test/create_test_heic.py -------------------------------------------------------------------------------- /test_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschiwy/HeicConverter/HEAD/test_converter.py --------------------------------------------------------------------------------