エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Rails - Paperclip - How to Check the Image Dimensions before saving
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Rails - Paperclip - How to Check the Image Dimensions before saving
Yep! Here's a custom validation I wrote for my app, it should work verbatim in yours, just set th... Yep! Here's a custom validation I wrote for my app, it should work verbatim in yours, just set the pixels to whatever you want. def file_dimensions dimensions = Paperclip::Geometry.from_file(file.queued_for_write[:original].path) self.width = dimensions.width self.height = dimensions.height if dimensions.width < 50 && dimensions.height < 50 errors.add(:file,'Width or height must be at least 50px')