Skip to content

Instantly share code, notes, and snippets.

@P3nny
Last active December 18, 2015 22:23
Show Gist options
  • Save P3nny/9d80238f98bccefe0692 to your computer and use it in GitHub Desktop.
Save P3nny/9d80238f98bccefe0692 to your computer and use it in GitHub Desktop.
Image Magick Cheat Sheet - Fun and easy picture editing in Linux command lIne
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Image Magick Cheat Sheet\n",
"\n",
"@pen1710 - 15-12-18"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Resize \n",
"\n",
"http://www.howtogeek.com/109369/how-to-quickly-resize-convert-modify-images-from-the-linux-terminal/\n",
"\n",
"ImageMagick will try to preserve the aspect ratio if you use this command. It will alter the image to fit within a 200×100 area, but the image may not be exactly 200×100.\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"convert example.png -resize 200×100 example.png"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Make Animated Gif\n",
"\n",
"http://www.linux-magazine.com/Online/Blogs/Productivity-Sauce/Create-Animated-GIFs-with-ImageMagick\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"convert -delay 120 -loop 0 *.png animated.gif"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.11"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment