== Installation Gem: (Recommended) gem install fleximage # in config/environment.rb config.gem 'fleximage' Plugin: ./script/plugin install git://github.com/Squeegy/fleximage.git = Fleximage == Overview Fleximage is a Rails plugin that tries to make image uploading and rendering super easy. There are 2 pieces involved in making Rails image handling easy. === 1. Image Uploads In this post Rails 2, resource-driven world, Fleximage believes that images should belong directly to a record. So you simply tell your model class to act as Fleximage, and your model effortlessly gains the ability to handle file uploads. * Your model gains the ability to interface directly with a +file_field+ form, allowing uploads with zero extra controller or model code. * Accept uploads from a web address, pulling in the image from the internet and saving it locally. * Image presence validation with customizable form field error messages. * Image format validation that will not allow the file to be uploaded unless RMagick can parse it into useable image data. * Image pre-processing to keep uploaded images under a certain size, or other on-upload image processing tasks. === 2. Image Rendering The other half of the problem comes from the need to send the uploaded images back to the web browser. Most of the time, you need to display the image in different sizes or formats in different places on your site. For example, a product image in a store may need a square thumbnail image, a medium image for its focus page, and a large image for an "enlarge this photo" popup. Fleximage uses a simple templating engine that allows you to re-render images exactly how you need them. Using the same "master image," many images can be rendered from the same source. You can even go beyond resizing; there is support for image overlays, text drawing, drop shadows, borders and more. The rendering engine is flexible and extensible to whatever your dynamic image needs are. * Renderer implemented as template engine, which fits in perfectly with Rails 2 RESTful style format-sensitive views. * Does not need to have everything resized on upload allowing your site layout the change later on, and all images will re-render themselves just right with your new rendering templates. * Support for special effects like text, image or logo overlays, borders and shadows. * Extensible by adding image operator classes which allow for reusable snippets of direct RMagick code. * Requires absolutely zero controller code. = Getting Started == 1. Installation Gem: (Recommended) gem install fleximage # in config/environment.rb config.gem 'fleximage' Plugin: ./script/plugin install git://github.com/Squeegy/fleximage.git == 2. Activating your model You need to let your model know it should be Fleximage-friendly. Lets say you have a model for photos. # app/models/photo.rb class Photo < ActiveRecord::Base acts_as_fleximage :image_directory => 'public/images/uploaded_photos' end The :+image_directory+ option tells the plugin where to store your master images. This value is relative to your application root, and doesn't need to be in your public directory if you don't want it to be. This is where the source images will be that all your templates start with. There are many other options for your model. Refer to the Fleximage::Model::ClassMethods class in the +rdoc+ for more information on these. == 3. The upload form Your users need a way to upload their images into your site. Here is how we might render a form to create a photo record. # app/views/photos/new.html.erb <% form_for @photo, :html => { :multipart => true } do |f| %>
Name
<%= f.text_field :name %>
Author
<%= f.text_field :author %>
Upload Image
<%= f.file_field :image_file %>
or URL: <%= f.text_field :image_file_url %>
<%= f.submit "Create" %>
<% end %> *NOTE*: The ":html => { :multipart => true }" is *VERY* *IMPORTANT*. Without this snippet your browser will not send binary data to the server. If things aren't working, check to make sure you have this in your form declaration. The relevant bit of our form code is:
Upload Image
<%= f.file_field :image_file %>
or URL: <%= f.text_field :image_file_url %>
<%= image_tag formatted_photo_path(@photo, :jpg) %>
Name: <%=h @photo.name %>
Author: <%=h @photo.author %>
That image tag uses a Rails route as its +src+. In this case, that route corresponds to the .jpg format of the +photo+ resource, which would give us a URL like: http://mysite.com/photos/123.jpg This is the URL where the image will be. == 5. Rendering the image Now it's time to actually create a template to render the image. This happens through a special view with a .+flexi+ extension. This view template will pull out the master image for you, and send it to the browser as binary data after your processing of it done. The filename of the template should look like this: action_name.jpg.flexi, where +action_name+ is the controller action that will render this view. The +jpg+ tells the controller to render this view when the +jpg+ format is asked for. The +flexi+ tells Rails to render this view with the Fleximage template engine, rather than +erb+, +builder+ or other template types. The syntax of the view is pure ruby, but to process the image the view needs to call +operate+ on the instance of your model. Here is the view to render a photo record at 320x240: # app/views/photos/show.jpg.flexi # http://mysite.com/photos/123.jpg @photo.operate do |image| image.resize '320x240' end Calling @photo.operate { |image| .. } prepares the model object for image processing and provides a ruby object that will allow you to perform image transformations. This example just resizes the image to 320x240, however many other operators are included. Here is a .+flexi+ template that will do much more: # app/views/show.jpg.flexi @photo.operate do |image| image.resize '640x480', :crop => true image.image_overlay 'public/images/logo.png', :alignment => :bottom_right, :offset => '20x20' image.border :size => 10, :color => 'green' image.text 'I like Cheese' image.unsharp_mask image.shadow end This template will: * Resize the image to exactly 640x480, cropping off any extra. * Add a logo 20 pixels form the lower right corner * Add a green 10 pixel border * Write "I like Cheese" in the upper left corder * Sharpen the image * Add a black drop shadow on a white background For more information on image operators, open up vendor/plugins/fleximage/rdoc/index.html in your installed plugin and check out the full for details about each operator: * Fleximage::Operator::Border * Fleximage::Operator::Crop * Fleximage::Operator::ImageOverlay * Fleximage::Operator::Resize * Fleximage::Operator::Shadow * Fleximage::Operator::Text * Fleximage::Operator::Trim * Fleximage::Operator::UnsharpMask = Other Useful Information == Image output format You don't want to render JPGs? That's fine. Just link to the format you want (:+jpg+, :+gif+ or :+png+) and declare the your template name to match and the image will be rendered properly. For instance, this will render a +gif+. # app/views/photos/show.html.erb <%= image_tag photo_path(@photo, :gif) %> # app/views/photos/show.gif.flexi @photo.operate do |image| @photo.resize '150x150', :crop => true end The Fleximage template engine will automatically detect the format that is being asked for, and render the right type of image. == Converting/Upgrading your master image store Are you upgrading your live app to the new file store creation date based format? Did you start out with PNG image storage, and later realize you need to store with the more space economic JPG instead? Not problem, Fleximage provides some rake tasks to help you out. Each conversion rake task requires that you tell it the class for which that you are changing the file store. For example, if you want to change to the new creation date based storage structure, for the class +Photo+, you can run a rake task like this: rake fleximage:convert:to_nested FLEXIMAGE_CLASS=Photo Or if you want to run this on your production database rake fleximage:convert:to_nested FLEXIMAGE_CLASS=Photo RAILS_ENV=production *IMPORTANT*: These tasks manipulate the source files that make up your images. I take no responsibility if these rake tasks delete all your images. It is highly advised you back up you master image directory before running any of these tasks on your production site. Here are all the conversion tasks: * fleximage:convert:to_nested : Converts your master image store from the flat based path/to/images/123.png format to the creation date based format path/to/images/2008/11/12/123.png based format. Use this task if you are upgrading from an older version of Fleximage. * fleximage:convert:to_flat : Converts your master image store from the creation date based path/to/images/2008/11/12/123.png format to the flat format path/to/images/123.png format. Note this will leave the date based directories in place, but they will be empty and can be easily manually deleted. * fleximage:convert:to_jpg : Converts all your stored master images from PNG format to JPG format. This will compress your previously lossless master images. * fleximage:convert:to_png : Converts all your stored master images from JPG format to PNG format. After you run any of these tasks, make sure to update your model's class accessors +use_creation_date_based_directories+ and +image_storage_format+ to reflect the state of your image store. Otherwise, the plugin will not find you master images for rendering. ------ Copyright (c) 2008 Alex Wayne beautifulpixel.com, released under the MIT license. Special Thanks to Chris Vannoy for intelligent code review, suggestions and contributions to making this plugin awesome.