Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

@@ -1,19 +1,19 @@
# convert
> Imagemagick image conversion tool
> Imagemagick image conversion tool.
- Convert an image from JPG to PNG
- Convert an image from JPG to PNG:
`convert {{image.jpg}} {{image.png}}`
- Scale an image 50% it's original size
- Scale an image 50% it's original size:
`convert {{image.png}} -resize 50% {{image2.png}}`
- Scale an image keeping the original aspect ratio to a maximum dimension of 640x480.
- Scale an image keeping the original aspect ratio to a maximum dimension of 640x480:
`convert {{image.png}} -resize 640x480 {{image2.png}}`
- Horizontally append images
- Horizontally append images:
`convert {{image1.png}} {{image2.png}} {{image3.png}} +append {{image123.png}}`