Add retina files support on automatic_image_sizes

v3-stable
Paulo 2015-05-08 23:18:11 +02:00
parent 28498b2fbe
commit 647ec149ca
1 changed files with 7 additions and 0 deletions

View File

@ -23,6 +23,13 @@ class Middleman::Extensions::AutomaticImageSizes < ::Middleman::Extension
if File.exist?(full_path)
begin
width, height = ::FastImage.size(full_path, raise_on_failure: true)
# Check for @2x and @3x image
retina = full_path.match/(@(\d)x\.[a-zA-Z]{3,4}$/)
if retina
factor = retina[1].to_i
width = width / factor
height = height / factor
end
params[:width] = width
params[:height] = height
rescue FastImage::UnknownImageType