12 lines
172 B
Bash
12 lines
172 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# additional options:
|
||
|
# -posterize 3
|
||
|
|
||
|
SRC=$1
|
||
|
DST=$2
|
||
|
shift 2
|
||
|
|
||
|
convert "$SRC" $@ -resize 600x448 -dither FloydSteinberg -type Palette -remap palette.bmp "$DST"
|
||
|
|