ePaper display driven by a Raspberry Pi Pico
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
172 B

  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"