Created
March 13, 2020 15:51
-
-
Save Geri-Borbas/f5a29fe32368ae6b6385170de0c6d53b to your computer and use it in GitHub Desktop.
Set DPI resolution (to 300) of every image in a folder (using ImageMagick).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for f in *; do convert -density 300 -units pixelsperinch "$f" "$f"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment