简体   繁体   中英

Paperclip is not saving the original file when a style is defined

I'm working to make Paperclip store a thumbnail in addition to the original image. The original image had always saved file and now I'm trying to add a thumbnail.

The problem is, once I defined the style thumbnail, the original is no longer being saved. How can I get the original to save along with the thumb?

has_mongoid_attached_file :attachment,
  :storage => :s3,
  :s3_credentials => "s3.yml",
  :s3_protocol => 'https',
  :s3_permissions => :private,
  :use_timestamp => true,
  :default_style => :original,
  :default_url => '/images/:attachment/default_:style.png',
  :path => "/:rails_env/private/:basename.:extension",
  :styles => {
    :thumb => "100x100#" },
  :convert_options => {
    :thumb => "-quality 75 -strip" }

安装Imagemagic ( https://github.com/thoughtbot/paperclip ),然后您可以使用这样的方式将原始尺寸的照片调整为任何尺寸

<img src="#", size: '150x150'>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM