2014-05-30 20:27:55 +02:00
|
|
|
# convert
|
|
|
|
|
|
|
|
> Imagemagick image conversion tool
|
|
|
|
|
|
|
|
- Convert an image from JPG to PNG
|
|
|
|
|
|
|
|
`convert {{image.jpg}} {{image.png}}`
|
|
|
|
|
2015-10-22 09:31:52 +02:00
|
|
|
- Scale an image 50% it's original size
|
2014-05-30 20:27:55 +02:00
|
|
|
|
|
|
|
`convert {{image.png}} -resize 50% {{image2.png}}`
|
|
|
|
|
2015-12-31 11:54:03 +01:00
|
|
|
- Scale an image keeping the original aspect ratio to a maximum dimension of 640x480.
|
|
|
|
|
|
|
|
`convert {{image.png}} -resize 640x480 {{image2.png}}`
|
|
|
|
|
2015-10-22 09:31:52 +02:00
|
|
|
- Horizontally append images
|
2014-05-30 20:27:55 +02:00
|
|
|
|
|
|
|
`convert {{image1.png}} {{image2.png}} {{image3.png}} +append {{image123.png}}`
|