dotfiles/.local/bin/scripts/topng

5 lines
141 B
Text
Raw Normal View History

2024-04-13 12:47:32 +02:00
#!/bin/sh -x
2023-09-12 01:16:35 +02:00
# Convert given file to PNG
pdftoppm -png "$@" >"$1.png" ||
convert -background white -alpha off -density 500 "$@" "$1.png"