* [[Convert pdf to pdf without losing quality|https://stackoverflow.com/questions/49899547/imagemagik-convert-pdf-to-pdf-without-doing-anything#49900085]]
** //you have to upsize and put density first, e.g: `convert -density 288 input.pdf -resize 25% output.pdf`//
* [[ImageMagick using too much memory to convert PDF files|https://stackoverflow.com/questions/15384879/imagemagick-using-more-than-2gb-of-memory-to-convert-pdf-files]]
** How to limit resources used? [[-limit type value|http://www.imagemagick.org/script/command-line-options.php#limit]]
** [[ImageMagick can come with very low limits|https://github.com/ImageMagick/ImageMagick/issues/396#issuecomment-326849298]], example before and after fix
** Edit `/etc/ImageMagick-7/policy.xml` to comment out a line like `<policy domain="coder" rights="none" pattern="PDF" />`, OR edit `rights="[...]"` to `rights="read|write"`