mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
9 lines
200 B
Batchfile
9 lines
200 B
Batchfile
@echo off
|
|
magick php.svg -size 512x512 php.bmp
|
|
|
|
for %%i in (16,24,32,48,64,128,256) do magick php.bmp -scale %%ix%%i php-ico-%%i.png
|
|
|
|
magick -adjoin php-ico-* php.ico
|
|
|
|
del /f /q php-ico-*.png php.bmp
|