php-src/win32/build/mkico.sh
Peter Kokot 48916cec33
Sync file permissions
Git can track executable (0755) and non-executable (0644) file modes.
This is a minor file permissions sync for the win32/build/mkico.sh
(0755).

[skip ci]
2024-08-02 02:39:52 +02:00

12 lines
221 B
Bash
Executable file

#!/usr/bin/env bash
convert php.svg -size 512x512 php.bmp
for I in 16 24 32 48 64 128 256;
do
convert php.bmp -scale ${I}x${I} php-ico-${I}.png;
done
convert -adjoin php-ico-* php.ico
rm -f php-ico-*.png php.bmp