Rails 和 Paperclip - 调整大小问题

Posted

技术标签:

【中文标题】Rails 和 Paperclip - 调整大小问题【英文标题】:Rails and Paperclip - resizing issue 【发布时间】:2012-10-17 13:33:01 【问题描述】:

我知道回形针 gem 可以选择创建多个调整大小的图像版本。 示例:

class User < ActiveRecord::Base
  # Paperclip
  has_attached_file :photo,
    :styles => 
    :thumb => "100x100#",
    :small  => "150x150>",
    :medium => "200x200" 
end

我希望将图像大小调整为“500x500>”并且只保留这个调整大小的版本(丢弃原始版本)。

这可能吗?怎么样?

【问题讨论】:

***.com/questions/7027335/… 【参考方案1】:
class User < ActiveRecord::Base
  # Paperclip
  has_attached_file :photo,
    :styles => 
    :original => "500x500>", #this will resize the original directly
    :thumb => "100x100#",
    :small  => "150x150>",
    :medium => "200x200" 
end

【讨论】:

以上是关于Rails 和 Paperclip - 调整大小问题的主要内容,如果未能解决你的问题,请参考以下文章

Rails:Paperclip 为相似的视频产生不同的结果

Paperclip + Rails 与负载平衡机器

在 Paperclip 和 Rails 4 中将 Jcrop 坐标转换为 convert_options

Rails 4 Paperclip with Devise,文件保存错误

使用 Rails 和 Paperclip 设置存储桶的名称放置域样式 (bucket.s3.amazonaws.com)

Paperclip 不显示图像,而是在 rails 中显示带有 amazon s3 的标题?