0.01
No commit activity in last 3 years
No release in over 3 years
FastImage Inline places small images inline in you HTML IMG tags code using a 'data' url.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 1.1.2
 Project Readme

FastImage Inline

FastImage Inline speeds up your webpages with inline images in HTML using a data url

FastImage Inline uses the data uri scheme to place images inline in your image tags, thus saving the http connections that would otherwise have to be made from the browser for each image.

Some major sites already use this optimisation technique – for instance google news. It’s effective when you are using small images (less than 3k bytes), and you do not use those images more than once in a page. Also do not use this for images that you might wish to be cached by the browser – page elements that appear in multiple pages on your site are not good candidates.

This plugin (or gem) adds a helper to rails that adds a method to ask for an image to be served inline inside the html if possible.

Browser support

All modern browsers support this technique except for IE versions 7 and below. This is still a major segment of the market of course, but as IE users migrate to IE 8 this will become less of a problem.

FastImage Inline uses a simple browser detection mechanism by looking at the user agent string. If the browser is known to not have support, or if we do not recognise it at all, we serve a normal image tag which includes the path to the image file in the src attribute. But if we know the browser can handle it, we send the image inline, and the browser won’t need to fetch it separately.

Examples

  inline_image_tag("bullet.gif")

Result for request from a data-uri capable browser:

  <img alt="Bullet" src="data:image/gif;base64,R0lGODlhCAANAJECAAAAAP///////wAAACH5BAEAAAIALAAAAAAIAA0AAAITlI+p
  yxgPI5gAUvruzJpfi0ViAQA7" />

Result for a non-capable browser:

  <img alt="Bullet" src="/images/bullet.gif?1206090639" />

Limits

Reportedly IE8 will not handle data strings longer than 32k bytes. But it is probably unwise to inline images this big anyway. Google news serves images that are up to about 3.5k in length, and this seems a reasonable approach. However, FastImage Inline does not enforce any particular constraints, it is for you to decide.

FastImage Inline does not cache the images it has read – so every time an image is sent it will be read from disk. This feature may be added in a later release.

Installation

Note that the FastImage gem must be installed first, check the requirements section below.

As a Rails plugin

  ./script/plugin install git://github.com/sdsykes/fastimage_inline.git

As a Gem

  sudo gem install fastimage_inline

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

  ...
  Rails::Initializer.run do |config|
    ...
    config.gem "fastimage_inline", :lib=>"fastimage_inline"
    ...
  end
  ...

Requirements

  sudo gem install fastimage

Documentation

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

Tests

The tests are run like this

  $ ruby test/test.rb 
  Loaded suite test/test
  Started
  .....
  Finished in 0.46836 seconds.

  5 tests, 17 assertions, 0 failures, 0 errors

References