Difference between revisions of "Convert (command)"
From Linuxintro
imported>ThorstenStaerk |
imported>ThorstenStaerk |
||
Line 1: | Line 1: | ||
[[Convert]] is a [[graphics command]] from the ImageMagick software package that allows [[file]] [[conversion]] between graphical formats on a [http://simple.wikipedia.org/wiki/Command_Line_Interface console] like this: | [[Convert]] is a [[graphics command]] from the ImageMagick software package that allows [[file]] [[conversion]] between graphical formats on a [http://simple.wikipedia.org/wiki/Command_Line_Interface console] like this: | ||
+ | |||
+ | = Convert between formats = | ||
convert scan1*.png text1.ps | convert scan1*.png text1.ps | ||
+ | |||
+ | = Scale size = | ||
+ | convert -geometry 200x200 whatever.png | ||
= See also = | = See also = | ||
* [[conversion]] | * [[conversion]] |
Revision as of 08:58, 2 June 2012
Convert is a graphics command from the ImageMagick software package that allows file conversion between graphical formats on a console like this:
Convert between formats
convert scan1*.png text1.ps
Scale size
convert -geometry 200x200 whatever.png