たろすの技術メモ

Jot Down the Tech

ソフトウェアエンジニアのメモ書き

2023-08-16から1日間の記事一覧

画像アップロード時にアスペクト比とサイズをチェックする方法

active storageをインストール $ rails active_storage:install $ rails db:migrate model, migrationを作成 $ rails g model Hoge $ rails db:migrate Modelを作成 # app/models/hoge.rb class Hoge < ApplicationRecord MAX_IMAGE_SIZE = 2 # 2MBまで has_…