dotfiles/.local/bin/scripts/topng
2023-09-12 01:16:35 +02:00

4 lines
138 B
Bash
Executable file

#!/bin/sh
# Convert given file to PNG
pdftoppm -png "$@" >"$1.png" ||
convert -background white -alpha off -density 500 "$@" "$1.png"