Include instructions about creating/using .ico files

This commit is contained in:
Junior 2024-06-13 16:56:58 -04:00
parent 2593e6ae72
commit 2322a2de30

View File

@ -22,4 +22,6 @@ Syntax:
pyinstaller MyFile.spec
```
This will create two folders named `Build/` and `Dist/`. The `.EXE` file will be created inside the `Dist/` folder. The executable can be moved anywhere on the system and does not need Python to be installed in order to work.
This will create two folders named `Build/` and `Dist/`. The `.EXE` file will be created inside the `Dist/` folder. The executable can be moved anywhere on the system and does not need Python to be installed in order to work.
**WARNING NOTE:** If an icon is to be used for the created executable it is HIGHLY recommended to use an icon converter to create a singular `.ico` file that contains all icon resolutions inside it. An online tool such as [ICOConvert](https://icoconvert.com/) or [RedKetchup IconConverter](https://redketchup.io/icon-converter) can be used to convert a higher resolution image into a multi-resolution `.ico` file.