Skip to content
Snippets Groups Projects
make_ico.sh 480 B
Newer Older
  • Learn to ignore specific revisions
  • hluk's avatar
    hluk committed
    img1=src/images/icon.png
    
    img2=src/images/logo.png
    
    out=${1:-src/images/icon.ico}
    
    args=(
        -background transparent
        \( "$img1" -resize 16x16 \)
    
    hluk's avatar
    hluk committed
        \( "$img1" -resize 20x20 \)
        \( "$img1" -resize 24x24 \)
    
        -density 600
        \( "$img1" -resize 32x32 \)
    
    hluk's avatar
    hluk committed
        \( "$img2" -resize 40x40 \)
    
        \( "$img2" -resize 48x48 \)
        \( "$img2" -resize 64x64 \)
        \( "$img2" -resize 96x96 \)
        \( "$img2" -resize 128x128 \)
        "$out"
        )
    
    exec convert "${args[@]}"