ePaper display driven by a Raspberry Pi Pico
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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"