Sha256: 451e70e333676e61d958229c16ef139e882e496530fd17d353b1235d1ea300c3
Contents?: true
Size: 1.81 KB
Versions: 3
Compression:
Stored size: 1.81 KB
Contents
module YAMG # # ICONS # # class Icon attr_accessor :src, :size, :rounded, :icons def initialize(src, size, rounded = false) fail if src.nil? || src.empty? @src = src @size = size @rounded = rounded @icons = YAMG.load_images(src) end def find_closest_gte_icon return icons.max_by(&:to_i) if icons.map(&:to_i).max < size icons.min_by do |f| # n = x.match(/\d+/).to_s.to_i n = f.to_i size > n ? Float::INFINITY : n end end def image path = File.join(src, find_closest_gte_icon) img = MiniMagick::Image.open(path) img.resize size # "NxN" rounded ? round(img) : img end # # Maybe this can be smaller, terminal equivalent: # convert # -size 512x512 xc:none # -draw "roundrectangle 0,0,512,512,55,55" mask.png # convert icon.png # -matte mask.png # -compose DstIn # -composite picture_with_rounded_corners.png # https://gist.github.com/artemave/c20e7450af866f5e7735 def round(img, r = 14) size = img.dimensions.join(',') r = img.dimensions.max / r radius = [r, r].join(',') mask = MiniMagick::Image.open(img.path) mask.format 'png' mask.combine_options do |m| m.alpha 'transparent' m.background 'none' m.draw "roundrectangle 0,0,#{size},#{radius}" end overlay = ::MiniMagick::Image.open img.path overlay.format 'png' overlay.combine_options do |o| o.alpha 'transparent' o.background 'none' o.draw "roundrectangle 0,0,#{size},#{radius}" end masked = img.composite(mask, 'png') do |i| i.alpha 'set' i.compose 'DstIn' end masked.composite(overlay, 'png') do |i| i.compose 'Over' end masked end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
yamg-0.0.9 | lib/yamg/icon.rb |
yamg-0.0.8 | lib/yamg/icon.rb |
yamg-0.0.7 | lib/yamg/icon.rb |