We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be awesome to have mac/icns behaviour extended to another targets.
mac/icns
User may provide single source image:
.svg
.png
app-builder generates:
app-builder
.icns
.ico
.svg/.png
size.png
name-scale.png
Related issue:
The text was updated successfully, but these errors were encountered:
Actually app-builder generates .ico container from .png image but with single size inside.
Recommended sizes inside ico should be from 16x16 to 256x256 pixels https://docs.microsoft.com/en-us/windows/win32/uxguide/vis-icons
Sorry, something went wrong.
One more detail: app-builder can generate icons for linux from . icns but not from .svg and .png images.
. icns
.png -> . icns works as expected.
Just for the information, to generate .ico with all required sizes from single .png you may use:
magick convert resources/icon.png \ -resize 256x256 \ -define icon:auto-resize="256,128,96,64,48,40,32,24,16" \ resources/icon.ico
No branches or pull requests
It would be awesome to have
mac/icns
behaviour extended to another targets.User may provide single source image:
.svg
- recommended format..png
- minimum as 256x256 px (up to 1024x1024 px).app-builder
generates:.icns
icon container for macOS - current implementation.ico
for Windows (from original.svg/.png
, not from.icns
)size.png
- set of icons for Linux packages.name-scale.png
- set of icons for AppX.Related issue:
The text was updated successfully, but these errors were encountered: