Check in some assets

master
informatic 2019-01-15 19:56:12 +01:00
parent da756f728a
commit 8993042ac0
4 changed files with 911 additions and 0 deletions

23
assets/Makefile Normal file
View File

@ -0,0 +1,23 @@
IMAGES_OUTPUT_DIR = images
SVG_FILES := $(wildcard images/*.svg)
PNG_FILES := $(SVG_FILES:%.svg=%.png) images/overlay-dim.png
BGRA_FILES := $(PNG_FILES:%.png=%.bgra)
vpath %.svg $(SVG_FILES)
vpath %.png $(PNG_FILES)
vpath %.bgra $(BGRA_FILES)
%.png: %.svg
@inkscape -C -e $@ $<
%.bgra: %.png
@convert $< -format BGRA $@
all: $(BGRA_FILES) $(PNG_FILES)
clean:
@rm $(PNG_FILES) $(BGRA_FILES)
$(IMAGES_OUTPUT_DIR)/overlay-dim.png: $(IMAGES_OUTPUT_DIR)/overlay.png
@convert $< -channel a -evaluate multiply 0.25 +channel png32:$@

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 179 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 48 KiB

83
assets/images/overlay.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 48 KiB