<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/images</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Thu, 23 May 2013 19:51:47 GMT</pubDate>
<item>
<title>(jQuery) JQuery grayscale images turn colored on hover - zartgesotten</title>
<link>http://snipplr.com/view/71279/jquery-grayscale-images-turn-colored-on-hover/</link>
<description><![CDATA[ <p>Works like a charm. Read manual on site. For use with Worpdress, replace $ with jQuery.</p> ]]></description>
<pubDate>Thu, 23 May 2013 16:20:56 GMT</pubDate>
<guid>http://snipplr.com/view/71279/jquery-grayscale-images-turn-colored-on-hover/</guid>
</item>
<item>
<title>(HTML) Captions For Lists and Images - COBOLdinosaur</title>
<link>http://snipplr.com/view/71211/captions-for-lists-and-images/</link>
<description><![CDATA[ <p>One of the limits of using lists (ordered and unordered) is that they have no provision for a heading. You can do something like: This is a Title etc... but it is invalid because the list containers can only contain List Items. One way commonly used to put a heading on a list is to put a paragraph or div ahead of the list. It is messy and ugly, but it validates.

The problem with that solution is that the elements are not bound to each other and therefore it can break unless you make it even uglier by putting a common wrapper around both elements, and then you have extra linefeeds to deal with.</p> ]]></description>
<pubDate>Fri, 17 May 2013 03:58:58 GMT</pubDate>
<guid>http://snipplr.com/view/71211/captions-for-lists-and-images/</guid>
</item>
<item>
<title>(CSS) Image Sprites - How to get portion of an image - codingforever99</title>
<link>http://snipplr.com/view/70588/image-sprites--how-to-get-portion-of-an-image/</link>
<description><![CDATA[ <p>One of the great methods to load and work with icons in web pages is to load one image that is a collection of several icons and use any icon as needed, that reduces the number of server request and save bandwidth.</p> ]]></description>
<pubDate>Thu, 28 Mar 2013 19:26:58 GMT</pubDate>
<guid>http://snipplr.com/view/70588/image-sprites--how-to-get-portion-of-an-image/</guid>
</item>
<item>
<title>(HTML) Captions for images - COBOLdinosaur</title>
<link>http://snipplr.com/view/70374/captions-for-images/</link>
<description><![CDATA[ <p>The nice part about it is that the caption is locked to the image. The figure can be positioned and styled and the caption can be rendered with any affect that can be applied to any other text element.</p> ]]></description>
<pubDate>Wed, 13 Mar 2013 05:56:54 GMT</pubDate>
<guid>http://snipplr.com/view/70374/captions-for-images/</guid>
</item>
<item>
<title>(PHP) Fix Timthumb Script When Using a URL That Contains Tildes (~) - tacudtap</title>
<link>http://snipplr.com/view/69694/fix-timthumb-script-when-using-a-url-that-contains-tildes-/</link>
<description><![CDATA[ <p>If you are using the [TimThumb](http://code.google.com/p/timthumb/ "TimThumb on Google Code") script with a URL the contains tildes (~) and images are breaking, here is the fix...

I did not create this snippet but found it extremely useful so I thought I'd make it available here. The URL listed is not mine but where I found it. Enjoy :-)

At line 209 (as of 01-29-13) in the script you will find the following line of code:

`$this->src = $this->param('src');`

Replace that line with the following snippet:</p> ]]></description>
<pubDate>Wed, 30 Jan 2013 02:24:32 GMT</pubDate>
<guid>http://snipplr.com/view/69694/fix-timthumb-script-when-using-a-url-that-contains-tildes-/</guid>
</item>
<item>
<title>(PHP) Basic PHP Image Rotation - goddess</title>
<link>http://snipplr.com/view/69502/basic-php-image-rotation/</link>
<description><![CDATA[ <p>simple image rotation script; save as rotate.php in folder with images, call  to display</p> ]]></description>
<pubDate>Wed, 16 Jan 2013 14:39:24 GMT</pubDate>
<guid>http://snipplr.com/view/69502/basic-php-image-rotation/</guid>
</item>
<item>
<title>(PHP) Download and save images from a page using cURL - goo</title>
<link>http://snipplr.com/view/69459/download-and-save-images-from-a-page-using-curl/</link>
<description><![CDATA[ <p>Here is a set of functions that can be very useful: Give this script the url of a webpage, and it will save all images from this page on your server.</p> ]]></description>
<pubDate>Mon, 14 Jan 2013 22:08:29 GMT</pubDate>
<guid>http://snipplr.com/view/69459/download-and-save-images-from-a-page-using-curl/</guid>
</item>
<item>
<title>(JavaScript) A function that uses images to perform a countdown. - o0110o</title>
<link>http://snipplr.com/view/67847/a-function-that-uses-images-to-perform-a-countdown/</link>
<description><![CDATA[ <p>Set the desired date within the function. 
Make some images and label them "1.jpg, 2.jpg, 3.jpg, etc...".
That's how it's done.</p> ]]></description>
<pubDate>Sun, 21 Oct 2012 03:32:38 GMT</pubDate>
<guid>http://snipplr.com/view/67847/a-function-that-uses-images-to-perform-a-countdown/</guid>
</item>
<item>
<title>(PHP) show attachment images (except for the first image) with description (user thumbnail size) - shin</title>
<link>http://snipplr.com/view/67423/show-attachment-images-except-for-the-first-image-with-description-user-thumbnail-size/</link>
<description><![CDATA[ <p>description from title, image size from function.php (add_image_size( 'descr', 278, 200, true );)</p> ]]></description>
<pubDate>Fri, 28 Sep 2012 20:59:32 GMT</pubDate>
<guid>http://snipplr.com/view/67423/show-attachment-images-except-for-the-first-image-with-description-user-thumbnail-size/</guid>
</item>
<item>
<title>(Python) Monkey patch for images pipeline - scrapy</title>
<link>http://snipplr.com/view/67005/monkey-patch-for-images-pipeline/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 01 Sep 2012 07:15:32 GMT</pubDate>
<guid>http://snipplr.com/view/67005/monkey-patch-for-images-pipeline/</guid>
</item>
<item>
<title>(Bash) Bash Resize Multiple Images - luizlopes</title>
<link>http://snipplr.com/view/66821/bash-resize-multiple-images/</link>
<description><![CDATA[ <p>* apt-get install imagemagick
* [mogrify](http://www.imagemagick.org/Usage/basics/#mogrify)</p> ]]></description>
<pubDate>Tue, 21 Aug 2012 04:14:00 GMT</pubDate>
<guid>http://snipplr.com/view/66821/bash-resize-multiple-images/</guid>
</item>
<item>
<title>(PHP) Add custom images sizes to WordPress - thescottlee</title>
<link>http://snipplr.com/view/65478/add-custom-images-sizes-to-wordpress/</link>
<description><![CDATA[ <p>- Use custom image size within template (including if exist)
- Add a class name to a custom image size</p> ]]></description>
<pubDate>Fri, 08 Jun 2012 09:35:06 GMT</pubDate>
<guid>http://snipplr.com/view/65478/add-custom-images-sizes-to-wordpress/</guid>
</item>
<item>
<title>(jQuery) preload images on jquery - Narayon</title>
<link>http://snipplr.com/view/64997/preload-images-on-jquery/</link>
<description><![CDATA[ <p>this can run before $(document).ready event, since it doesn't rely on any DOM.</p> ]]></description>
<pubDate>Wed, 23 May 2012 01:21:23 GMT</pubDate>
<guid>http://snipplr.com/view/64997/preload-images-on-jquery/</guid>
</item>
<item>
<title>(CSS) Replacing the -9999px hack - Narayon</title>
<link>http://snipplr.com/view/64296/replacing-the-9999px-hack/</link>
<description><![CDATA[ <p>The alt property of the img tag is also a good practice.</p> ]]></description>
<pubDate>Tue, 03 Apr 2012 00:06:40 GMT</pubDate>
<guid>http://snipplr.com/view/64296/replacing-the-9999px-hack/</guid>
</item>
<item>
<title>(CSS) Kellum Method (hiding text in CSS image background divs) - chris5marsh</title>
<link>http://snipplr.com/view/64027/kellum-method-hiding-text-in-css-image-background-divs/</link>
<description><![CDATA[ <p>* Really long strings of text will never flow into the container because they always flow away from the container.
* Performance is dramatically improved because a 9999px box is not drawn. Noticeably so in animations on the iPad 1.</p> ]]></description>
<pubDate>Mon, 19 Mar 2012 22:36:16 GMT</pubDate>
<guid>http://snipplr.com/view/64027/kellum-method-hiding-text-in-css-image-background-divs/</guid>
</item>
<item>
<title>(MySQL) (Player - Player Agent) Images - karthi</title>
<link>http://snipplr.com/view/63503/player--player-agent-images/</link>
<description><![CDATA[ <p>(Player - Player Agent) Images</p> ]]></description>
<pubDate>Wed, 22 Feb 2012 18:58:34 GMT</pubDate>
<guid>http://snipplr.com/view/63503/player--player-agent-images/</guid>
</item>
<item>
<title>(C#) C# image processing, useful for resizing images and making thumbnails - Krummelz</title>
<link>http://snipplr.com/view/63455/c-image-processing-useful-for-resizing-images-and-making-thumbnails/</link>
<description><![CDATA[ <p>Just call "ProcessImageAndItsThumbnail" with your newly uploaded image's URL, and it will resize it for you, and make a thumbnail as well. Just remember to set the sizes you want for these new images.</p> ]]></description>
<pubDate>Mon, 20 Feb 2012 23:38:15 GMT</pubDate>
<guid>http://snipplr.com/view/63455/c-image-processing-useful-for-resizing-images-and-making-thumbnails/</guid>
</item>
<item>
<title>(PHP) Loop dans repertoire - pruntrut</title>
<link>http://snipplr.com/view/63071/loop-dans-repertoire/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 05 Feb 2012 05:44:01 GMT</pubDate>
<guid>http://snipplr.com/view/63071/loop-dans-repertoire/</guid>
</item>
<item>
<title>(jQuery) rotating background images - ryonley</title>
<link>http://snipplr.com/view/62524/rotating-background-images/</link>
<description><![CDATA[ <p>Creates  rotating background images with a smooth transition.</p> ]]></description>
<pubDate>Fri, 13 Jan 2012 02:22:21 GMT</pubDate>
<guid>http://snipplr.com/view/62524/rotating-background-images/</guid>
</item>
<item>
<title>(Ruby) Extract most common colors from an image - kellishaver</title>
<link>http://snipplr.com/view/62442/extract-most-common-colors-from-an-image/</link>
<description><![CDATA[ <p>Takes an image (path or url) and extracts the 7 most common colors and returns their hex values.</p> ]]></description>
<pubDate>Tue, 10 Jan 2012 10:27:12 GMT</pubDate>
<guid>http://snipplr.com/view/62442/extract-most-common-colors-from-an-image/</guid>
</item>
</channel>
</rss>