@kalle kalle / 9fb3316696f9ac3de3671da8b7c03cf7
Created at Thu Aug 13 14:58:11 CEST 2020
convert pdf and iamges
gistfile1.txt
Raw
## convert pdf into monocrome pdf

```
convert -density 300 -depth 1 -compress Lossless input.pdf /tmp/t.png; img2pdf -o output.pdf /tmp/t.png; rm /tmp/t.png
```