Initial version - cycling of BMP images

This commit is contained in:
Dejvino
2023-04-19 20:04:02 +02:00
commit c6ce9c6654
4 changed files with 770 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
# additional options:
# -posterize 3
SRC=$1
DST=$2
shift 2
convert "$SRC" $@ -resize 600x448 -dither FloydSteinberg -type Palette -remap palette.bmp "$DST"