Praphul H
Praphul H

Reputation: 41

Paper Clip Not Saving alternate styles

Paperclip is not saving any changes in the uploaded images but is saving original perfectly well. MY understanding from all the logs is that it cannot access ImageMagick... I have install RMagick along with paperclip. Somehow cannot find why is this happening? Can someone help me with how to check is paperclip is able to access ImageMagick.

Model:

has_attached_file :photo,
  :style => {
    :original => "500x500",
    :small => "200x200"
  }

attr_accessible :name, :photo
attr_protected :photo_file_name, :photo_content_type, :photo_size

gemfile:

gem 'paperclip', '2.3.16'
gem 'rmagick'

Upvotes: 0

Views: 288

Answers (1)

Praphul H
Praphul H

Reputation: 41

Stupid Mistake!!!

:style => {

should be

:styles => {

Sorry for bothering!

Upvotes: 4

Related Questions