Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hello? Any paper_clip wizards out there know if you can when using paperclip to save an image, also save the image dimensions (width&height) in 2 extra fields? How do you get such data during the paperclip upload process?

Thank you

share|improve this question

4 Answers

Just for the sake of completeness, even though previous answers already show good enough suggestions.
You can utilize paperclip event handlers instead of Rails callbacks. In this case, size will be recalculated only when image changes. (If you're using S3 for storage, this can save quite some time)

  has_attached_file :image, :styles => ...
  after_post_process :save_image_dimensions

  def save_image_dimensions
    geo = Paperclip::Geometry.from_file(image.queued_for_write[:original])
    self.image_width = geo.width
    self.image_height = geo.height
  end

Image don't even have to be downloaded from S3 (or read from a file), paperclip provides it to event handler itself.

See Events section of the readme for details.

share|improve this answer
downloaded 2 gems already to try (and fail) to achieve this. Wish I had found this simple snippet first. Many thanks :) – goggin13 Feb 29 '12 at 16:37

When a user uploads an image with paperclip I process it with the following model:

class Picture < ActiveRecord::Base
  has_attached_file :pic, :styles => { :small => "100x100>" }, :whiny => true
  after_save :save_geometry

  def save_geometry
    unless @geometry_saved
      self.original_geometry = get_geometry(:original)
      self.small_geometry = get_geometry(:small)
      @geometry_saved = true
      self.save
    end
  end

  def get_geometry(style = :original)
    begin
      Paperclip::Geometry.from_file(pic.path(style)).to_s
    rescue
      nil
    end
  end
end

The get_geometry function calls ImageMagick identify to find the geometry of your original and resized images.

I cache the results in a database field. For example if I uploaded an image that was 1024x768 my cached fields would contain:

original_geometry = "1024x768"
small_geometry = "100x75"
share|improve this answer

You will need to require 'RMagick'

uploaded_image = Magick::Image.read(image).first  #image is what you've specified in paperclip to be your image
width = uploaded_image.columns
height = uploaded_image.rows

Not sure how to have it working with the callbacks, though. Maybe something like:

attr_accessor :write_image_dimensions?
before_save :check_image_changed

def check_image_changed
  self.write_image_dimensions? = image_changed?
end

after_save :write_image_dimensions, :if => :write_image_dimensions?

def write_image_dimensions
  uploaded_image = Magick::Image.read(image).first  #image is what you've specified in paperclip to be your image
  self.width = uploaded_image.columns
  self.height = uploaded_image.rows
  save
end
share|improve this answer

I think that such functionality does not exist in paperclip. If you want to add it, you'll probably want to modify the 'assign' method in lib/paperclip/attachment.rb, where you can get the geometry using Paperclip::Geometry.from_file

share|improve this answer
is there any way I could use ImageMagick during the upload process? – TheExit Oct 31 '10 at 22:39
yes, check the Paperclip::Processor class. Check test/style_test.rb for ideas. – Roman Oct 31 '10 at 22:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.