mirror of
https://github.com/NikitaIvanovV/ctpv.git
synced 2025-01-24 00:38:33 +01:00
11 lines
320 B
Bash
11 lines
320 B
Bash
|
pdf() {
|
||
|
pdftoppm -f 1 -l 1 \
|
||
|
-scale-to-x 1920 \
|
||
|
-scale-to-y -1 \
|
||
|
-singlefile \
|
||
|
-jpeg -tiffcompression jpeg \
|
||
|
-- "$f" "$cache_f" && mv -- "$cache_f.jpg" "$cache_f"
|
||
|
}
|
||
|
|
||
|
convert_and_show_image pdf
|