sdsykes / fastimage

FastImage finds the size or type of an image given its uri by fetching as little as needed

This URL has Read+Write access

sdsykes (author)
Wed Sep 16 22:25:57 -0700 2009
commit  c3fd728545806ebbf9c2bbfb15b60c01afc2371a
tree    0da1a8ee031ef658655a2dd47c4a7c0e0610dc5f
parent  ea18bfc55bfa4da8f97b6cab459ad5a2877fddb1
name age message
file README Wed Jul 08 05:46:52 -0700 2009 Add readme file for rdoc.info Correct config.ge... [sdsykes]
file README.textile Loading commit data...
file Rakefile
file VERSION.yml Wed Sep 16 22:25:57 -0700 2009 Version bump to 1.2.1 [sdsykes]
file fastimage.gemspec Wed Sep 16 22:25:57 -0700 2009 Regenerated gemspec for version 1.2.1 [sdsykes]
directory lib/
directory test/
README.textile

FastImage

FastImage finds the size or type of an image given its uri by fetching as little as needed

The problem

Your app needs to find the size or type of an image. This could be for adding width and height attributes to an image tag, for adjusting layouts or overlays to fit an image or any other of dozens of reasons.

But the image is not locally stored – it’s on another asset server, or in the cloud – at Amazon S3 for example.

You don’t want to download the entire image to your app server – it could be many tens of kilobytes, or even megabytes just to get this information. For most image types, the size of the image is simply stored at the start of the file. For JPEG files it’s a little bit more complex, but even so you do not need to fetch most of the image to find the size.

FastImage does this minimal fetch for image types GIF, JPEG, PNG and BMP. And it doesn’t rely on installing external libraries such as RMagick (which relies on ImageMagick or GraphicsMagick) or ImageScience (which relies on FreeImage).

You only need supply the uri, and FastImage will do the rest.

Fastimage can also read local (and other) files, and uses the open-uri library to do so.

Examples


require 'fastimage'

FastImage.size("http://stephensykes.com/images/ss.com_x.gif")
=> [266, 56]  # width, height
FastImage.type("http://stephensykes.com/images/pngimage")
=> :png
FastImage.type("/some/local/file.gif")
=> :gif

Installation

Gem


  sudo gem install sdsykes-fastimage -s http://gems.github.com

Rails

Install the gem as above, and configure it in your environment.rb file as below:


... Rails::Initializer.run do |config| ... config.gem "sdsykes-fastimage", :lib=>"fastimage" ... end ...

Then you’re off – just use FastImage.size() and FastImage.type() in your code as in the examples.

Documentation

http://rdoc.info/projects/sdsykes/fastimage

Tests

You’ll need to ‘sudo gem install fakeweb’ to be able to run the tests.


ruby test/test.rb
Loaded suite test/test
Started
...............
Finished in 0.059392 seconds.

15 tests, 27 assertions, 0 failures, 0 errors

References

© 2009 Stephen Sykes