dev: add import_assets.sh

This commit is contained in:
mcolonna 2024-04-04 15:29:37 +02:00
parent ea59cdd8a6
commit 92fbb27f18
2 changed files with 9 additions and 10 deletions

View file

@ -1,12 +1,4 @@
# How to import assets?
1. `sudo apt install magickimage`
2. cd to a directory where there is *only* .png files (or subdirectories)
3. Execute
```sh
for PNG in $(find . -type f -name "*.png")
do
convert "$PNG" -alpha opaque "${PNG%.png}.xpm"
convert "$PNG" -alpha extract "${PNG%.png}.alpha.xpm"
rm "$PNG"
done
```
2. cd to a directory where there is .png files
3. Execute `dev/import_assets.sh`

7
dev/import_assets.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
for PNG in $(find . -type f -name "*.png")
do
convert "$PNG" -alpha opaque "${PNG%.png}.xpm"
convert "$PNG" -alpha extract "${PNG%.png}.alpha.xpm"
rm "$PNG"
done