<?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/jpg</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Thu, 23 May 2013 13:55:06 GMT</pubDate>
<item>
<title>(Bash) Convert image sequence to video - jmiller</title>
<link>http://snipplr.com/view/68533/convert-image-sequence-to-video/</link>
<description><![CDATA[ <p>This would convert images at 30fps to a mp4 video, with sequence titles:
ImageName0000.png, ImageName0001.png, etc.

You could use -r 1/5 to use one frame every five seconds.</p> ]]></description>
<pubDate>Tue, 13 Nov 2012 09:52:38 GMT</pubDate>
<guid>http://snipplr.com/view/68533/convert-image-sequence-to-video/</guid>
</item>
<item>
<title>(Java) get Bitmap From Asset - l01241</title>
<link>http://snipplr.com/view/66281/get-bitmap-from-asset/</link>
<description><![CDATA[ <p>private String mapPath = "img/full_map.png"; 
parkMapBitmap = getBitmapFromAsset(this.getContext(),mapPath);</p> ]]></description>
<pubDate>Mon, 23 Jul 2012 13:53:20 GMT</pubDate>
<guid>http://snipplr.com/view/66281/get-bitmap-from-asset/</guid>
</item>
<item>
<title>(PHP) PHP GD Thumbnail Generator 0.1 - dillonchr</title>
<link>http://snipplr.com/view/57111/php-gd-thumbnail-generator-01/</link>
<description><![CDATA[ <p>Tweaked from the icant.co.uk thumbnail generator</p> ]]></description>
<pubDate>Mon, 25 Jul 2011 14:39:36 GMT</pubDate>
<guid>http://snipplr.com/view/57111/php-gd-thumbnail-generator-01/</guid>
</item>
<item>
<title>(PHP) PDF2JPG - convert PDF to JPG images with ImageMagick - alessio2</title>
<link>http://snipplr.com/view/48513/pdf2jpg--convert-pdf-to-jpg-images-with-imagemagick/</link>
<description><![CDATA[ <p>#ImageMagick must be installed on server for this operation</p> ]]></description>
<pubDate>Mon, 07 Feb 2011 22:41:49 GMT</pubDate>
<guid>http://snipplr.com/view/48513/pdf2jpg--convert-pdf-to-jpg-images-with-imagemagick/</guid>
</item>
<item>
<title>(Bash) Find jpg file recursively - bash - tribal</title>
<link>http://snipplr.com/view/48231/find-jpg-file-recursively--bash/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 02 Feb 2011 03:51:05 GMT</pubDate>
<guid>http://snipplr.com/view/48231/find-jpg-file-recursively--bash/</guid>
</item>
<item>
<title>(Bash) imagemagick conversion pdf-jpg - lafayette</title>
<link>http://snipplr.com/view/46787/imagemagick-conversion-pdfjpg/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 08 Jan 2011 20:54:36 GMT</pubDate>
<guid>http://snipplr.com/view/46787/imagemagick-conversion-pdfjpg/</guid>
</item>
<item>
<title>(PHP) Get remote Image, resize and save it - rave</title>
<link>http://snipplr.com/view/41165/get-remote-image-resize-and-save-it/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 30 Sep 2010 03:36:32 GMT</pubDate>
<guid>http://snipplr.com/view/41165/get-remote-image-resize-and-save-it/</guid>
</item>
<item>
<title>(AppleScript) Change Apple Screenshot to jpg - G470</title>
<link>http://snipplr.com/view/40361/change-apple-screenshot-to-jpg/</link>
<description><![CDATA[ <p>Use Terminal to do this.</p> ]]></description>
<pubDate>Sun, 12 Sep 2010 21:40:01 GMT</pubDate>
<guid>http://snipplr.com/view/40361/change-apple-screenshot-to-jpg/</guid>
</item>
<item>
<title>(PHP) Generate thumbnails with PHP by AR - alessio2</title>
<link>http://snipplr.com/view/37161/generate-thumbnails-with-php-by-ar/</link>
<description><![CDATA[ <p>* Creates thumbnail from image
  * thumbnail dimensions can be set as parameters
  * accepts JPG, JPEG, GIF, PNG
  * preserves transparency for GIF and PNG on thumbnails
  * call function like this: createthumb(images/original.jpg, thumbs/thumb.jpg, 80, 80);</p> ]]></description>
<pubDate>Mon, 12 Jul 2010 23:06:04 GMT</pubDate>
<guid>http://snipplr.com/view/37161/generate-thumbnails-with-php-by-ar/</guid>
</item>
<item>
<title>(PHP) PHP Image Upload Create Thumbnails Class - leonelsantos</title>
<link>http://snipplr.com/view/34023/php-image-upload-create-thumbnails-class/</link>
<description><![CDATA[ <p>A class for uploading images and creating thumbnails.

Example:
		try{
			$img = new img('photo');
			if($_FILES['photo']['size']>=1000000){
				exit('The file size of the file you are trying to upload is over limit.
				Your file size = '.$_FILES['photo']['size'].' bytes. File size limit = '.
				$this->_limitSize.' bytes. Try again.');
			}
			$img->setUploadFolder('img/');
			$img->setFilename($id);
			$img->setDimensions(250,175);
			$img->cropToSquare();
			$img->upload();
			$img->thumb();
			$errors = $img->getErrors();
		} catch (Exception $e) {
			$errors = $e->getMessage();
		}</p> ]]></description>
<pubDate>Fri, 07 May 2010 09:15:03 GMT</pubDate>
<guid>http://snipplr.com/view/34023/php-image-upload-create-thumbnails-class/</guid>
</item>
<item>
<title>(C#) Presentation Framework Imaging Classes Gray-Scale Example (loading, drawing, encoding) - bryanlyman</title>
<link>http://snipplr.com/view/27700/presentation-framework-imaging-classes-grayscale-example-loading-drawing-encoding/</link>
<description><![CDATA[ <p>You must include these DLL references in your vsweb or vscode project:\r\nPresentationCore,\r\nPresentationFramework,\r\nWindowsBase. \r\nNotice how I am manipulating the RGB values of each pixel, this is the power of these classes. The Drawing classes have the pixel drawing capabilities to draw lines and such already written for you, but handling a grayscale byte for byte is faster than relying on their other classes. I also chose to load and encode as PNG, but they have loaders and encoders for other file types as well that work the same way.</p> ]]></description>
<pubDate>Thu, 04 Feb 2010 12:51:39 GMT</pubDate>
<guid>http://snipplr.com/view/27700/presentation-framework-imaging-classes-grayscale-example-loading-drawing-encoding/</guid>
</item>
<item>
<title>(ActionScript 3) Embedded Image in Flash - edsonpavoni</title>
<link>http://snipplr.com/view/24636/embedded-image-in-flash/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 11 Dec 2009 17:10:15 GMT</pubDate>
<guid>http://snipplr.com/view/24636/embedded-image-in-flash/</guid>
</item>
<item>
<title>(Bash) resize images - 1b0t</title>
<link>http://snipplr.com/view/20398/resize-images/</link>
<description><![CDATA[ <p>resize all jpgs in current folder to width 1400px</p> ]]></description>
<pubDate>Tue, 29 Sep 2009 05:54:58 GMT</pubDate>
<guid>http://snipplr.com/view/20398/resize-images/</guid>
</item>
<item>
<title>(Ruby) Avoid "JPEG marker not found!" error - PixelMin</title>
<link>http://snipplr.com/view/9191/avoid-jpeg-marker-not-found-error/</link>
<description><![CDATA[ <p>If you get "JPEG marker not found!" error when you try to open an image file you must read it in binary mode.</p> ]]></description>
<pubDate>Wed, 22 Oct 2008 06:48:35 GMT</pubDate>
<guid>http://snipplr.com/view/9191/avoid-jpeg-marker-not-found-error/</guid>
</item>
<item>
<title>(CSS) Image-less Dropshadow - doublej</title>
<link>http://snipplr.com/view/8142/imageless-dropshadow/</link>
<description><![CDATA[ <p>As seen in maps.google.nl. Drop Shadow without any images. 5 DIV's with different opacity creates the gradient/shadow like effect. Lightweight and no png (or any IE6 hacks for that matter) hacks.

Any improvements are welcome...</p> ]]></description>
<pubDate>Tue, 02 Sep 2008 09:51:55 GMT</pubDate>
<guid>http://snipplr.com/view/8142/imageless-dropshadow/</guid>
</item>
<item>
<title>(ActionScript 3) Loader - zeman</title>
<link>http://snipplr.com/view/7203/loader/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 10 Jul 2008 00:21:55 GMT</pubDate>
<guid>http://snipplr.com/view/7203/loader/</guid>
</item>
<item>
<title>(ActionScript 3) Save JPG image from Flash CS3 - gfazioli</title>
<link>http://snipplr.com/view/5674/save-jpg-image-from-flash-cs3/</link>
<description><![CDATA[ <p>This snipped is split in two sections: Actionescript 3 and PHP</p> ]]></description>
<pubDate>Thu, 03 Apr 2008 04:42:20 GMT</pubDate>
<guid>http://snipplr.com/view/5674/save-jpg-image-from-flash-cs3/</guid>
</item>
<item>
<title>(Perl) Make a list of JPEGs into a slide show - noah</title>
<link>http://snipplr.com/view/3123/make-a-list-of-jpegs-into-a-slide-show/</link>
<description><![CDATA[ <p>Show jpegs one-per-page on a series of hyperlinked web pages.  Purpose was to provide a linear viewing mechanism for jpegs on my Palm Tungsten C.</p> ]]></description>
<pubDate>Tue, 03 Jul 2007 22:02:15 GMT</pubDate>
<guid>http://snipplr.com/view/3123/make-a-list-of-jpegs-into-a-slide-show/</guid>
</item>
<item>
<title>(Java) J2ME - HelloWorld - whitetiger</title>
<link>http://snipplr.com/view/1614/j2me--helloworld/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 09 Nov 2006 23:55:21 GMT</pubDate>
<guid>http://snipplr.com/view/1614/j2me--helloworld/</guid>
</item>
<item>
<title>(Java) J2ME - System Properties - whitetiger</title>
<link>http://snipplr.com/view/1609/j2me--system-properties/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 09 Nov 2006 23:55:18 GMT</pubDate>
<guid>http://snipplr.com/view/1609/j2me--system-properties/</guid>
</item>
</channel>
</rss>