2013-02-05 14:16:51 -05:00
|
|
|
module ImageSizer
|
|
|
|
|
|
|
|
# Resize an image to the aspect ratio we want
|
2013-02-25 11:42:20 -05:00
|
|
|
def self.resize(width, height)
|
2013-06-15 06:29:20 -04:00
|
|
|
return if width.blank? || height.blank?
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-08-25 18:24:24 -04:00
|
|
|
max_width = SiteSetting.max_image_width.to_f
|
|
|
|
max_height = SiteSetting.max_image_height.to_f
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
w = width.to_f
|
|
|
|
h = height.to_f
|
|
|
|
|
2013-08-25 18:24:24 -04:00
|
|
|
return [w.floor, h.floor] if w <= max_width && h <= max_height
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-08-25 18:24:24 -04:00
|
|
|
ratio = [max_width / w, max_height / h].min;
|
|
|
|
[(w * ratio).floor, (h * ratio).floor]
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|