1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 03:17:58 +01:00

Fix another much needed imagemagick command.

This commit is contained in:
85pando 2015-12-31 11:54:03 +01:00
parent 71d8547aad
commit a3f0d36a80

View file

@ -10,6 +10,10 @@
`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}}`