├── .gitignore ├── README.md ├── README_zh-CN.md ├── img ├── demo1.png └── demo2.png ├── pe2pic.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/pe2pic/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/pe2pic/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /img/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/pe2pic/HEAD/img/demo1.png -------------------------------------------------------------------------------- /img/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/pe2pic/HEAD/img/demo2.png -------------------------------------------------------------------------------- /pe2pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/pe2pic/HEAD/pe2pic.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pillow==9.5.0 2 | pefile 3 | --------------------------------------------------------------------------------