diff options
author | dennis <dennis@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2009-01-26 00:48:32 +0000 |
---|---|---|
committer | dennis <dennis@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2009-01-26 00:48:32 +0000 |
commit | 66222dc2fc07a6570a93b5b06ad74e5c7452ed01 (patch) | |
tree | 2c56d7cb1a5a3f9161390c9218329ceb5c52e506 /grafik | |
parent | 61852dc8d729b1c4b04f398262e3ed098d919208 (diff) |
Korrektur: Die Farbtiefe wird wieder von 16 auf 8 Bit reduziert (dieser Befehl muss zuletzt /und/ in einem eigenen Schritt ausgeführt werden).
git-svn-id: https://svn.neo-layout.org@1546 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'grafik')
-rw-r--r-- | grafik/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/grafik/Makefile b/grafik/Makefile index e883f78..de094ce 100644 --- a/grafik/Makefile +++ b/grafik/Makefile @@ -40,6 +40,7 @@ tastatur3d/ziffernfeld/%.png: tastatur3d/%.svg mkdir -p tastatur3d/ziffernfeld inkscape --without-gui --export-id="Ziffernblock" --export-png=$@ -h200 tastatur3d/$*.svg mogrify -colors 256 -type Palette +dither -alpha off -alpha on $@ + mogrify -depth 8 $@ tastatur3d/haupt_ziffern_feld/%.png: tastatur3d/%.svg tastatur3d/hauptfeld/%.png tastatur3d/ziffernfeld/%.png mkdir -p tastatur3d/haupt_ziffern_feld @@ -47,6 +48,7 @@ tastatur3d/haupt_ziffern_feld/%.png: tastatur3d/%.svg tastatur3d/hauptfeld/%.png convert +append tastatur3d/hauptfeld/$*.png /tmp/$*_tmp.png $@ rm /tmp/$*_tmp.png mogrify -colors 256 -type Palette +dither -alpha off -alpha on $@ + mogrify -depth 8 $@ %.pdf: %.svg inkscape --without-gui --export-pdf=$@ $< @@ -54,5 +56,6 @@ tastatur3d/haupt_ziffern_feld/%.png: tastatur3d/%.svg tastatur3d/hauptfeld/%.png %.png: %.svg inkscape --without-gui --export-png=$@ -w1000 $< mogrify -colors 256 -type Palette +dither -alpha off -alpha on $@ + mogrify -depth 8 $@ .PHONY: default clean pdf cleanpdf png cleanpng ebenen cleanebenen |