winlabeler icon indicating copy to clipboard operation
winlabeler copied to clipboard

Tool for creating custom Windows folder icons and labels.

Results 5 winlabeler issues
Sort by recently updated
recently updated
newest added

The icon is located at `C:\Windows\System32\shell32.dll` and `C:\Windows\System32\imageres.dll`. It can be extracted inside Windows. # Why? A script that helps extract the icon can help to not have the images...

enhancement

When using a non square image, it get stretched in the final icon. Example using a 350x80 image: ![image](https://github.com/moxwel/winlabeler/assets/49621788/3c2c48c8-7f7f-44ff-be8d-805b630457b2)

bug

Make the shadow adjustable through CLI arguments. ![image](https://github.com/moxwel/winlabeler/assets/49621788/f3ffd64d-23d8-4841-98b6-073cfa71c937) # Example ``` python winLabeler.py "C:\example.png" --shadow 5 ``` ``` python winLabeler.py "C:\example.png" -sh 5 ``` > Add shadow with 5 gaussian...

enhancement

The program saves the following resolutions: 256, 48, 32, 16. The Windows folder icon has many more: 256, **64**, 48, **40**, 32, **24**, **20**, 16. File Explorer normally renders only...

enhancement

# Steps to reproduce Execute one time. ``` python winLabeler.py "C:\example.png" ``` No problem. Execute again. ``` python winLabeler.py "C:\example.png" ``` Python throw `FileExistsError` because `out.ico` already exists. # Possible...

bug