Daniel P. Berrangé | a8260d3 | 2019-01-10 12:00:45 +0000 | [diff] [blame] | 1 | |
| 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 | |
| 7 | regenerate: |
| 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 |