2013-02-05 13:16:51 -06:00
|
|
|
module ImageSizer
|
|
|
|
|
|
|
|
# Resize an image to the aspect ratio we want
|
2018-12-03 09:19:49 -06:00
|
|
|
def self.resize(width, height, opts = {})
|
2013-06-15 05:29:20 -05:00
|
|
|
return if width.blank? || height.blank?
|
2013-02-25 10:42:20 -06:00
|
|
|
|
2015-07-15 10:15:43 -05:00
|
|
|
max_width = (opts[:max_width] || SiteSetting.max_image_width).to_f
|
|
|
|
max_height = (opts[:max_height] || SiteSetting.max_image_height).to_f
|
2013-08-25 17:24:24 -05:00
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
w = width.to_f
|
|
|
|
h = height.to_f
|
|
|
|
|
2013-08-25 17:24:24 -05:00
|
|
|
return [w.floor, h.floor] if w <= max_width && h <= max_height
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2015-07-15 10:15:43 -05:00
|
|
|
ratio = [max_width / w, max_height / h].min
|
2013-08-25 17:24:24 -05:00
|
|
|
[(w * ratio).floor, (h * ratio).floor]
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2016-05-23 09:18:30 -05:00
|
|
|
def self.crop(width, height, opts = {})
|
|
|
|
return if width.blank? || height.blank?
|
|
|
|
|
|
|
|
max_width = (opts[:max_width] || SiteSetting.max_image_width).to_f
|
|
|
|
max_height = (opts[:max_height] || SiteSetting.max_image_height).to_f
|
|
|
|
|
|
|
|
w = width.to_f
|
|
|
|
h = height.to_f
|
|
|
|
|
|
|
|
return [w.floor, h.floor] if w <= max_width && h <= max_height
|
|
|
|
|
|
|
|
ratio = max_width / w
|
2016-07-27 11:48:02 -05:00
|
|
|
|
|
|
|
[[max_width, w].min.floor, [max_height, (h * ratio)].min.floor]
|
2016-05-23 09:18:30 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|