Difference between revisions of "Convert (command)"
From Linuxintro
imported>ThorstenStaerk |
imported>ThorstenStaerk |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | [[Convert]] is a | + | [[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 whatever-200x200.png | ||
+ | |||
+ | = See also = | ||
+ | * [[conversion]] |
Latest revision as of 08:57, 20 December 2013
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 whatever-200x200.png