ePaper display driven by a Raspberry Pi Pico
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

convert_image.sh 172 B

1234567891011
  1. #!/bin/bash
  2. # additional options:
  3. # -posterize 3
  4. SRC=$1
  5. DST=$2
  6. shift 2
  7. convert "$SRC" $@ -resize 600x448 -dither FloydSteinberg -type Palette -remap palette.bmp "$DST"