Added ffmpeg, haxelib, Matt's Traceroute and imagemagick convert.

This commit is contained in:
Peter Tripp
2014-05-30 11:27:55 -07:00
parent b25008440e
commit 66b8ce3fc6
4 changed files with 72 additions and 0 deletions

15
pages/common/convert.md Normal file
View File

@@ -0,0 +1,15 @@
# 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}}`