Sha256: 8d047b88fbdd487c36a5a0598942cc49180dba052d20f50b847d612918bd6cd8
Contents?: true
Size: 1.17 KB
Versions: 2
Compression:
Stored size: 1.17 KB
Contents
module Pushfile module Resize autoload :MiniMagick, 'mini_magick' # Resize file. Keeping aspect ratio. def resize! begin image = MiniMagick::Image.open(@file.path) image.resize("#{@width}x#{@height}") rescue MiniMagick::Invalid # Skip if file type can't be resized rescue # Pass on any error else image.write(@file.path) rescue nil end end # Create thumbnail, same name but with _thumb at the end def thumbnail! begin image = MiniMagick::Image.open(@file.path) image.resize("#{Pushfile.settings[:images][:thumb][:width]}x") rescue MiniMagick::Invalid # Skip if file type can't be resized @thumb = nil Mailer.new.system_message("#{@file.path} #{@file.size}", "Can't resize").deliver rescue nil rescue @thumb = nil Mailer.new.system_message("#{@file.path} #{@file.size}", "File not found or something else").deliver rescue nil else t = @name.split('.') ext = t.pop @thumb = t.join(".").concat("_thumb.#{ext}") image.write("/tmp/#{@thumb}") rescue @thumb = nil end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pushfile-0.0.2 | lib/pushfile/resize.rb |
pushfile-0.0.1 | lib/pushfile/resize.rb |