Skip to content

Commit b47e3f7

Browse files
committed
Update windows.md
1 parent 2c189b8 commit b47e3f7

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

docs/en/manuals/windows.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,26 @@ The application icon used for a Windows game must be in the .ico format. You can
1818
Source: [Microsoft - Windows app icon construction](https://learn.microsoft.com/en-us/windows/apps/design/style/iconography/app-icon-construction#icon-sizes-win32)
1919

2020
### Creating .ico file locally using ImageMagick software suite.
21-
Example for Linux:
22-
1. Install [ImageMagick](https://www.imagemagick.org/):
21+
[ImageMagick](https://www.imagemagick.org/) is a free, open-source software suite, used for editing and manipulating digital images.
22+
23+
1. Install ImageMagick
24+
* Linux: Install using `apt`
2325
```
2426
sudo apt install imagemagick
2527
```
28+
* Windows: Download from [https://imagemagick.org/script/download.php#windows](https://imagemagick.org/script/download.php#windows):
29+
* macOS: Install using `brew`:
30+
```
31+
brew install imagemagick
32+
```
33+
2634
2. Prepare your PNG icon.
2735
3. Convert PNG to ICO using [convert](https://www.imagemagick.org/script/convert.php) tool:
2836
```bash
29-
convert icon_256x256px.png -compress None -define icon:auto-resize=256,128,96,64,48,32,24,16 favicon.ico
37+
magick icon_256x256px.png -compress None -define icon:auto-resize=256,128,96,64,48,32,24,16 favicon.ico
3038
```
3139

40+
41+
3242
## FAQ
3343
:[Windows FAQ](../shared/windows-faq.md)

0 commit comments

Comments
 (0)