mirror of https://github.com/CrimsonTome/tldr.git
16 lines
331 B
Markdown
16 lines
331 B
Markdown
|
# convert
|
||
|
|
||
|
> Imagemagick image conversion tool
|
||
|
|
||
|
- Convert an image from JPG to PNG
|
||
|
|
||
|
`convert {{image.jpg}} {{image.png}}`
|
||
|
|
||
|
- Scale an image 50% it's original size
|
||
|
|
||
|
`convert {{image.png}} -resize 50% {{image2.png}}`
|
||
|
|
||
|
- Horizontally append images
|
||
|
|
||
|
`convert {{image1.png}} {{image2.png}} {{image3.png}} +append {{image123.png}}`
|