From 2322a2de30668fb7b90654f23debfa14beac8abf Mon Sep 17 00:00:00 2001 From: Junior Date: Thu, 13 Jun 2024 16:56:58 -0400 Subject: [PATCH] Include instructions about creating/using .ico files --- PyGame/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/PyGame/README.md b/PyGame/README.md index 1732a73..a42027f 100644 --- a/PyGame/README.md +++ b/PyGame/README.md @@ -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. \ No newline at end of file +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. \ No newline at end of file