Rails engine for generating and caching dynamic sprite maps from Paperclip attachments at runtime - perfect for optimising common searches or filters
- Should work in terms of images, not domain concepts - you can combine images from multiple model types and styles (but not image formats).
- Should give you complete freedom when selecting a rendering option - works with rails html templates, JSON decorators, etc
- Should be as performant as possible - sprite maps are only generated when needed and cached. All work that can be pre-processed is done in advance.
- Should be as lightweight as possible - if you already have Paperclip installed, then you don't require any additional dependencies
- When you want a library that works without Ruby on Rails or Paperclip
- When your sprite maps can be determined at deploy time and do not depend on runtime data or behaviour. SpriteSheet seems to be the leading gem for this, but there are many others available.
- When you have not already considered optimising your production stack with technology like HTTP/2 compatible servers
- When you test SpriteMap on your production stack and it does not result in a measurable improvement in end user experience
- When you do not want or need the additional complexity of using sprite maps over individual images
- When your sprite maps depend on runtime data, such as common search queries or filters
- When you have already considered HTTP/2 and it is not available on your server, some of your supported clients, or you aren't convinced HTTP/2 is as fast as a sprite map
- When you see a measurable improvement in the average user experience by using SpirteMap
- Only jpeg/jpg images are supported
@images = Image.where(id: search_results_ids)
image_map = @images.inject({}) do |memo, photo|
memo[photo.image_fingerprint + '-preview'] = photo.image.path(:preview)
memo
end
@sprite_map = SpriteMap.find_or_create_by_image_map(image_map)
# Controller action
render @images, locals: { sprite_map: @sprite_map }
# View partial
<% pos = sprite_map.positions[image.fingerprint + '-preview'] %>
<%= image_tag 'placholder.gif', style="width: #{pos[:width]}px; height: #{pos[:height]}px; background: url(#{sprite_map.url}) #{pos[:x]}px #{pox[:y]}px no-repeat}" %>
# Controller action
@images = ImageDecorator.decorate_collection(@images, context: { sprite_map: sprite_map })
render json: @images, status: :ok
# Decorator
class ImageDecorator < Draper::Decorator
def url
context[:sprit_map].url
end
def position
context[:sprite_map].positions[object.fingerprint + '-preview']
end
end
SpriteMap accepts an object or map of identifiers to filepaths. The identifiers should be unique to the image as they will be used for cache validation. It's recommended you calculate file fingerprints in advance using Paperclip and then append the style to the hash (the fingerprint is for the original file, only). Pathnames are used instead file instances, because:
- Paperclip provides easy access to the filepaths of images already uploaded
- We don't want to perform file reads or instantiate complex objects unless we know we have to.
The identifiers are sorted (so the order images appear in the object don't matter, nor does it necessarily correspond with th order of the position the image will occupy in the final spritemap) and a MD5 hash is calculated from them. This is used as the identifier of the sprite map. The database is checked to see if there is already an entry with that hash (indicating the sprite map has already been created) and if so, it is instantiated.
If there is not already a sprite map, one is created by retrieving the image files at the provided filepaths, reading them in and concatenating them into a single file, which is then saved in the database using Paperclip to prevent having to generate it again.
Add this line to your application's Gemfile:
gem 'sprite_map'
And then execute:
$ bundle
Or install it yourself as:
$ gem install sprite_map
Copy the migrations to your Rails application
rake sprite_map:install:migrations
Run the migrations
rake db:migrate
It's also recommended that you generate fingerprints for your images as these will serve as useful identifiers for invalidating generated sprite maps. Please see the Paperclip documentation for how to do this:
Follow the Paperclip 5.x documentation and you're done.
Follow the Paperclip 4.x documentation and then regenerate your images.
image_map
must be an object of identifiers and file pathnames or urls.
- keys: It's recommended you pre-calculate a fingerprint for all your images (see here) and then append the style name as done in the usage example.
- values: Filepaths to your images. These can be attained using Paperclip's
path
method:model.image.path(:style)
.
This method creates a new sprite map from the files listed in image_map
and returns an instance of SpriteMap::ImageMap
(an ActiveRecord instance). If there is already a sprite map that corresponds with the list of images (and more specifically, their unique identifiers) then it is returned instead of recreating it.
It's also recorded in the database that this sprite map has been used, to help keep track of when each sprite map was last accessed.
Returns the positions object, keyed by the files' unique identifiers. Each position object has the following structure:
{
x: x, #horizontal position in pixels of the top left-hand corner of the image
y: y, #vertical position in pixels of the top left-hand corner of the image
width: width, #width of image in pixels
height: height #height of image in pixels
}
This is the object you will need to work with in your view layer to correctly display the correct section of the sprite map.
Returns the url of the sprite image for you to do whatever you want with - insert into a Rails view, document or JSON response.
The Paperclip attachment instance for the image. Normally you do not need to interact with this directly.
Returns the MD5 fingerprint for the sprite map. Normally you should not need this as SpriteMap automatically generates this value and uses it for cache invalidation.
- Support other image types and error handling for when images of different types are supplied
- Rake task for removing old sprite maps
- Test suite
All contributions, suggestions and issue are welcome.