Git Product home page Git Product logo

attachment-on-the-fly's Introduction

#Attachment on the Fly

Attachment on the Fly is a module that extends Paperclip by allowing dynamic image resizing without going through ActiveRecord first. This gem can only resize images. If you try to resize a PDF or other attachment, nothing will happen.

##Requirements

  • thoughtbot-paperclip gem
  • ImageMagick

##Quick Start

gem install attachment_on_the_fly

Setup your models the same way you normally do with Paperclip. Refer to Paperclip gem page for detailed instructions.

Once your attachments are working with Paperclip, add this line to the top of your models:

require "attachment_on_the_fly"

To use, reference the instance of your attachment like this:

<%= my_image_model.attachment.s_640_480 %>

This will output an image path based on your url interpolation and a resized image named S_640_480_your_image_name.jpg (or gif or png).

##Usage

Attachment on the Fly can accept three types of inputs: width by height, height proportional, and width proportional.

my_image_model.attachment.s_640_480
# will generate a 640x480 pixel image.

my_image_model.attachment.s_640_width
# will generate an image that is 640 pixels wide and
# proportionally high based on the original image dimensions.

my_image_model.attachment.s_480_height
# will generate an image that is 480 pixels high and
# proportionally wide based on the original image dimensions.

Parameters options

Attachment-on-the-fly uses Convert from image-magick to resize image and you can pass any convert options in hash notation.

my_image_model.attachment.s_800_600 :morph => 15

List of available convertation options can be found here.

The only exception is :extension parameter

my_image_model.attachment.s_400_300 :quality => 75, :extension => 'jpg'
# will generate an image that is 400x300 with quality 75% and convert jpg if necessary.

Note that the extension parameter will not trigger conversion to a different file type if the original file has an alpha channel (in order to avoid problems with, for example, PNG with alpha converted to JPEG). (Attachment-on-the-fly uses 'Identify' from image-magick to check for alpha before changing file type.)

When an image's instance is first accessed through the s_ method, a new image will be generated according to the image's path interpolation. Then, every time the image is accessed with the same dimensions, the previously generated image will be used. This allows the flexibility to resize images at will but still be able to cache previously generated images.

Currently, convert's sharpen is set to 1. If you need to change the sharpness or any other of convert's command line options, you will need to do so in the final lines of lib/attachment_on_the_fly.rb. We are working on a feature to do this dynamically, but it is not available yet.

Paperclip options

Attachment-on-the-fly refers to the following optional entries in Paperclip.options:

  • command_path (use to specify where to find "convert" binary)
  • extension (define a global default extension, can be overridden by parameters[:extension])
  • identify_path (use to specify where to find "identify" binary)
  • missing_image_path (default image to serve when original file is missing)
  • quality (define a global default quality, can be overridden by parameters[:quality])
  • version_prefix (inserted in name of generated files)
  • whiny (boolean, if true, raises an error when original file is missing instead of serving up image from missing_image_path)

Example: Paperclip.options[:whiny] = true

S3 integration

S3 integration is tested with aws-sdk of version < 2.0. It is not guaranteed to work flawlessly with latter versions. In case there is no original image stored locally, that image is going to be downloaded from S3, converted and uploaded back. User receives image link hosted at S3. Next time anybody askes for the same image size, he'll get this link immediately.

Contributing

If you find this gem useful, please post your comments, bugs, patches and suggestions on our Github site at http://github.com/drpentode/Attachment-on-the-Fly.

attachment-on-the-fly's People

Contributors

benissimo avatar drpentode avatar onsitedev avatar reinaldomendes avatar timsco avatar twonegatives avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.