Sha256: 66978bed408bf6e6866ba38c49dbe9634d39e7a40f2a98a448723e6f1350c9b8
Contents?: true
Size: 264 Bytes
Versions: 213
Compression:
Stored size: 264 Bytes
Contents
module ImagesHelper def image_width_for_height(filename, target_height) source_width, source_height = FastImage.size("#{Rails.root}/app/assets/images/#{filename}") ratio = source_width.to_f / source_height.to_f (target_height * ratio).to_i end end
Version data entries
213 entries across 213 versions & 2 rubygems