tldr/pages/common/convert.md

24 lines
632 B
Markdown
Raw Normal View History

# convert
> Imagemagick image conversion tool.
- Convert an image from JPG to PNG:
`convert {{image.jpg}} {{image.png}}`
2017-11-24 16:19:06 +00:00
- Scale an image 50% its original size:
`convert {{image.png}} -resize 50% {{image2.png}}`
- Scale an image keeping the original aspect ratio to a maximum dimension of 640x480:
`convert {{image.png}} -resize 640x480 {{image2.png}}`
- Horizontally append images:
`convert {{image1.png}} {{image2.png}} {{image3.png}} +append {{image123.png}}`
- Create a gif from a series of images with 100ms delay between them:
`convert {{image1.png}} {{image2.png}} {{image3.png}} -delay {{100}} {{animation.gif}}`