Difference between revisions of "ImageMagick"

From COPTR
Jump to navigation Jump to search
 
Line 1: Line 1:
{{Infobox_tool
+
{{Infobox tool
 +
|image=ImageMagick.jpg
 
|purpose=ImageMagick® is a software suite to create, edit, compose, or convert bitmap images.
 
|purpose=ImageMagick® is a software suite to create, edit, compose, or convert bitmap images.
|image=ImageMagick.jpg
 
 
|homepage=http://www.imagemagick.org
 
|homepage=http://www.imagemagick.org
 
|license=Apache License v2.0
 
|license=Apache License v2.0
 
|platforms=should run under any operating system
 
|platforms=should run under any operating system
 +
|function=Rendering, File Format Migration
 +
|content=Image
 +
}}
 +
{{Infobox tool details
 +
|ohloh_id=ImageMagick
 
}}
 
}}
 
<!-- Delete the Categories that do not apply -->
 
[[Category:Rendering]]
 
[[Category:File Format Migration]]
 
[[Category:Image]]
 
 
 
 
= Description =
 
= Description =
 
ImageMagick® is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PNG, Postscript, SVG, and TIFF.  
 
ImageMagick® is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PNG, Postscript, SVG, and TIFF.  
Line 46: Line 44:
  
 
= Development Activity =
 
= Development Activity =
 
{{Infobox_tool_details
 
|ohloh_id=ImageMagick
 
}}
 

Latest revision as of 15:17, 22 April 2021



ImageMagick
ImageMagick® is a software suite to create, edit, compose, or convert bitmap images.
Homepage:http://www.imagemagick.org
License:Apache License v2.0
Platforms:should run under any operating system
Function:Rendering,File Format Migration
Content type:Image


Error in widget Ohloh Project: unable to write file /var/www/html/extensions/Widgets/compiled_templates/wrt6622874d4f8da3_15020052


Description[edit]

ImageMagick® is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PNG, Postscript, SVG, and TIFF. Can be used as a migration tool for bitmap images.

Functionality[edit]

The functionality of ImageMagick is typically utilized from the command line or you can use the features from programs written in your favorite language. C


An example for a command is:

magick convert original.JPG migration.png

This converts a certain jpeg to a png file. For this command to work the console has to be opened in the folder the jpeg ("original.JPG") is saved in.


Another example:

magick -verbose identify examine.jpg >test.txt

This gives as many information as possible about "examine.jpg" and saves it in a Textfile ("test.txt"). It is also possible to do this with whole folders by building a script.

License[edit]

ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you may use, copy, modify, and distribute in both open and proprietary applications. It is distributed under the Apache 2.0 license, approved by the OSI and recommended for use by the OSSCC.

Download[edit]

The current release is available from http://www.imagemagick.org/download.

User Experiences[edit]

Used in Planets as a migration tool for Tiff format files.

A German speaking guide to develop batch-programs for ImageMagick can be found in the nestor wiki from https://wiki.dnb.de/pages/viewpage.action?pageId=123046041.

Development Activity[edit]