blob: 20bd64ccce543cd472cce27284102645f6e3e002 [file] [log] [blame]
Daniel P. Berrangéa8260d32019-01-10 12:00:45 +00001
2# Regenerate bitmaps from the SVG using inkscape CLI export
3# and ImageMagick. Don't use ImageMagick for the initial
4# SVG conversion, since it merely calls inkscape, but uses
5# 96 DPI res resulting in poor quality output.
6
7regenerate:
8 for s in 16 24 32 48 64 128 256 512; \
9 do \
10 inkscape --without-gui --export-png=qemu_$${s}x$${s}.png \
11 --export-width=$$s --export-height=$$s qemu.svg ; \
12 done
13 convert qemu_32x32.png qemu_32x32.bmp