LoginSignup
4
4

More than 5 years have passed since last update.

paperclip tips

Posted at

programming での画像登録 using paperclip

scrapingで取得した画像をpaperclipでuploadしようとして調べたメモ。

app/models/movie.rb
class Movie < ActiveRecord::Base
  has_attached_file :image, :styles => { :medium => "300x300>", :thumb => "100x100>" }, :default_url => "/images/:style/missing.png"
  end

movie = Movie.new
movie.image = File.open('file')
movie.save!

シンプルだった。

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4