I'm still in the process of tagging pages that were migrated from the old site, so for now you're best off using the search engine rather than relying on the tags.
- Convert a PDF to images - Use can use the convert command to convert a PDF into images. It uses ImageMagick behind the scenes. The following will convert foo.pdf PDF into foo-[n].jpg images, where [n] is an image number from 0: convert foo.pdf foo.jpg Note that it will cre...
- Resizing images with convert - Downsize JPGs by 50% convert -resize 50% *.jpg convert has loads of other options, for e.g changing dimensions or quality. NOTE 1: It has a problem with patch resizing, whereby it freezes the computer. I’ve found batches of 100 is too much. Batche...