dotfiles/.local/bin/scripts/topng
2024-04-13 12:47:32 +02:00

4 lines
141 B
Bash
Executable file

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