Created
February 15, 2016 20:54
-
-
Save marvinpinto/d422e8546f4f55933726 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Imagemagick script used to generate the logo for the 'marvinpinto-archive' | |
# Github Organization: https://github.com/marvinpinto-archive | |
# Github gravatar url from: https://api.github.com/users/marvinpinto | |
curl -s -o avatar.jpg https://avatars.githubusercontent.com/u/1159942?v=3 | |
# Using the Pencil Sketch examples from: | |
# http://www.imagemagick.org/Usage/photos | |
convert avatar.jpg -colorspace gray -sketch 0x20+120 avatar.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment