0
私のモデルがどのように見える店舗リサイズ画像:RAILS +クリップのみ
class Photo < ApplicationRecord
has_attached_file :image,
:styles => { :small => "50x50#" },
:default_style => :small
validates_attachment :image,
content_type: { content_type: ["image/jpeg",
"image/gif", "image/png"] }
end
RAILSは二度画像を記憶:元のサイズとして、そして:small
に定義されてリサイズ通り。サイズ変更された画像のみを保存したいと思います。
は私の答えを受け入れます。ありがとう – puneet18