Skip to content
Snippets Groups Projects
Commit d4aaad69 authored by hluk's avatar hluk
Browse files

Windows: Update icon

parent ff2b156c
No related branches found
No related tags found
No related merge requests found
src/images/icon.ico

145 KiB | W: | H:

src/images/icon.ico

179 KiB | W: | H:

src/images/icon.ico
src/images/icon.ico
src/images/icon.ico
src/images/icon.ico
  • 2-up
  • Swipe
  • Onion skin
#!/bin/bash
img1=src/images/icon.png
img2=src/images/logo.png
image_dir=src/images
out=${1:-src/images/icon.ico}
args=(
-background transparent
\( "$img1" -resize 16x16 \)
\( "$img1" -resize 20x20 \)
\( "$img1" -resize 24x24 \)
-density 600
\( "$img1" -resize 32x32 \)
\( "$img2" -resize 40x40 \)
\( "$img2" -resize 48x48 \)
\( "$img2" -resize 64x64 \)
\( "$img2" -resize 96x96 \)
\( "$img2" -resize 128x128 \)
${image_dir}/icon_16x16.png
\( ${image_dir}/icon_22x22.png -resize 20x20 \)
${image_dir}/icon_24x24.png
${image_dir}/icon_32x32.png
\( ${image_dir}/icon_48x48.png -resize 40x40 \)
${image_dir}/icon_48x48.png
${image_dir}/icon_64x64.png
\( ${image_dir}/icon_128x128.png -resize 96x96 \)
${image_dir}/icon_128x128.png
${image_dir}/icon_256x256.png
"$out"
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment