<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DZone Snippets: jpg code</title>
    <link>http://snippets.dzone.com/posts</link>
    <pubDate>Mon, 06 Oct 2008 17:17:06 GMT</pubDate>
    <description>DZone Snippets: jpg code</description>
    <item>
      <title>Create a single JPG gallery from an image archive</title>
      <link>http://snippets.dzone.com/posts/show/878</link>
      <description>The following comes from &lt;a href="http://ascii.textfiles.com/archives/000137.html"&gt;Jason Scott&lt;/a&gt; and is posted here with permission under the &lt;a href="http://creativecommons.org/licenses/by-sa/1.0/"&gt;Creative Commons Attribution-ShareAlike License&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;The script expands a zip or rar archive of images, makes thumbnails, and compiles the thumbnails into a single JPG to represent what's in the archive. Requires &lt;a href="http://www.imagemagick.org/"&gt;ImageMagick&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;# GALLERATE: Turn a zip of images into a gallery.&lt;br /&gt;# From Jason Scott. http://ascii.textfiles.com/archives/000137.html&lt;br /&gt;if [ -f "$1" ]&lt;br /&gt;   then&lt;br /&gt;   rm -rf .galleryworld&lt;br /&gt;   echo "[%] Preparting to squat out $1...."&lt;br /&gt;   mkdir .galleryworld&lt;br /&gt;   cd .galleryworld&lt;br /&gt;   unzip -j "../$1"&lt;br /&gt;   unrar e -ep "../$1"&lt;br /&gt;   echo "[%] WHY DOES IT HURT!!!!"&lt;br /&gt;   montage +frame +shadow +label -tile 7 *.JPG *.GIF *.gif *.jpg *.bmp *.png *.PNG *.BMP "../$1.jpg"&lt;br /&gt;   cd ..&lt;br /&gt;   rm -rf .galleryworld&lt;br /&gt;   ls -l "$1.jpg"&lt;br /&gt;  else&lt;br /&gt;  echo "No such file, assmaster."&lt;br /&gt;fi&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Usage:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;GALLERATE [file]&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;where [file] is the zip or rar archive of images to be processed.</description>
      <pubDate>Wed, 09 Nov 2005 07:05:13 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/878</guid>
      <author>madphilosopher (Darren Paul Griffith)</author>
    </item>
  </channel>
</rss>
