Initial version - cycling of BMP images
This commit is contained in:
Executable
+11
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user