This tool is for creating sprite sheets and converting image sequences into other formats.
-
First you must run
\SpriteSheetCreator\sprite_sheet_creator\venv\Scripts\activate.bat. -
In the project explorer, right-click the
main.pyfile and choose "Open in Terminal". -
Because PyCharm uses a virtual environment, you will need to include hidden imports for Pillow. Using PyInstaller to build the .exe, use the following command:
pyinstaller --onefile --paths=.\venv\ --windowed --hidden-import=PIL --hidden-import=Pillow --hidden-import=psutil --hidden-import=pyperclip --icon=main_window_widget.ico main_window_widget.py
This will generate a
main.exefile in thedistdirectory.
Nothing here yet. Need to add testing documentation.
I've included a requirements.txt file. The cat command may or may not be necessary.
Got it to run by installing these:
```shell
$ cat requirements.txt
Pillow
PyQT5
psutil
pyperclip
moviepy
opencv-python-headless
```