Difference between revisions of "ImageMagick"
(Created page with "'''''Imagemagick''''' is a image editing program that uses a scripting language to create, edit, and convert many different image formats. ==Useful Scripts== ===Make Picture...") |
|||
Line 1: | Line 1: | ||
− | '''''Imagemagick''''' is a image editing program that uses a scripting language to create, edit, and convert many different image formats. | + | '''''Imagemagick''''' is a cross-platform image editing program that uses a scripting language to create, edit, and convert many different image formats. It can be run in various different forms including a command-line program, invoked as an object, or as a PHP module. |
==Useful Scripts== | ==Useful Scripts== | ||
Line 12: | Line 12: | ||
[[Category: Software]] | [[Category: Software]] | ||
− | [[Category: | + | [[Category: Graphic Software]] |
[[Category: Useful Software]] | [[Category: Useful Software]] |
Revision as of 16:21, 14 August 2017
Imagemagick is a cross-platform image editing program that uses a scripting language to create, edit, and convert many different image formats. It can be run in various different forms including a command-line program, invoked as an object, or as a PHP module.
Useful Scripts
Make Picture Book
This script will take a folder full of JPEGs and make a PDF document out the them where there is one image centered on each page. The page size will have a standard letter ratio at 72 DPI.
magick *.jpg -gravity center -extent 612x792 -density 72 output.pdf
Links
- imagemagick.org/script/index.php - Official.