-
-
Save tonykevin/d1b8c7dfb1145cf3c3a1 to your computer and use it in GitHub Desktop.
Carrierwave image model validation on image dimensions/height/width.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
class ImageUploader < CarrierWave::Uploader::Base | |
include CarrierWave::MiniMagick | |
# Choose what kind of storage to use for this uploader: | |
storage :file | |
# Override the directory where uploaded files will be stored. | |
# This is a sensible default for uploaders that are meant to be mounted: | |
def store_dir | |
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}" | |
end | |
# Provide a default URL as a default if there hasn't been a file uploaded: | |
def default_url | |
"/uploads/missing/#{model.class.to_s.underscore}/#{version_name}.png" | |
end | |
# for image size validation | |
# fetching dimensions in uploader, validating it in model | |
attr_reader :width, :height | |
before :cache, :capture_size | |
def capture_size(file) | |
if version_name.blank? # Only do this once, to the original version | |
if file.path.nil? # file sometimes is in memory | |
img = ::MiniMagick::Image::read(file.file) | |
@width = img[:width] | |
@height = img[:height] | |
else | |
@width, @height = `identify -format "%wx %h" #{file.path}`.split(/x/).map{|dim| dim.to_i } | |
end | |
end | |
end | |
# resizing uploads | |
process :resize_to_fill => [148, 148] | |
# Add a white list of extensions which are allowed to be uploaded. | |
# For images you might use something like this: | |
def extension_white_list | |
%w(jpg jpeg png) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment