Here are the results of a vetti afternoon after a pathetic (read Optimisation Techniques) comprehensive exam:
ImageMagick simply rocks!!! Here’s the source code for the whole thing:
Shell script to generate the image with the number on it
This file contains 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 | |
# Timepass script to experiment with imagemagick | |
for x in 0 1 2 3 4 5 6 | |
do | |
convert -size 100x100 plasma:fractal -font Helvetica-Bold -pointsize 90 -tile gradient:white-gray -stroke white -annotate +26+78 $x $x.jpg; | |
echo -e "$x.jpg generated\n"; | |
done; | |
unset x; | |
exit 0; |
Code to put them all together into a single file with the polaroid-like frame around it:
This file contains 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
convert -size 150x150 xc:none -background none \ | |
-fill white -stroke grey60 \ | |
-draw "rectangle 0,0 110,110" 0.jpg \ | |
-geometry +5+5 -composite -rotate -10 \ | |
-draw "rectangle 0,0 110,110" 1.jpg \ | |
-geometry +5+5 -composite -rotate -10 \ | |
-draw "rectangle 0,0 110,110" 2.jpg \ | |
-geometry +5+5 -composite -rotate -10 \ | |
-draw "rectangle 0,0 110,110" 3.jpg \ | |
-geometry +5+5 -composite -rotate -10 \ | |
-draw "rectangle 0,0 110,110" 4.jpg \ | |
-geometry +5+5 -composite -rotate -10 \ | |
-draw "rectangle 0,0 110,110" 5.jpg \ | |
-geometry +5+5 -composite -rotate -10 \ | |
-draw "rectangle 0,0 110,110" 6.jpg \ | |
-geometry +5+5 -composite -rotate +10 \ | |
-trim +repage -background gray -flatten \ | |
poloroid_spread.gif |
The second half is a complete rip-off from here. The first script is also based on the examples from ImageMagick. The examples are awesome!
The sole reason behind me spending my entire afternoon educating myself (i.e. not studying): I wanted a series of snaps to be put up on my Gtalk account. Everyone on my list, do watch out for the Compre Countdown! :stuck_out_tongue_winking_eye: