Sha256: 7bb27d73b846d36107015d7c87000ab4704cec5733499cbca2bc205da1b49d63
Contents?: true
Size: 671 Bytes
Versions: 656
Compression:
Stored size: 671 Bytes
Contents
require_relative 'module' module Snapshot # This class takes care of removing the alpha channel of the generated screenshots class ScreenshotFlatten # @param (String) The path in which the screenshots are located in def run(path) UI.message("Removing the alpha channel from generated png files") flatten(path) end def flatten(path) Dir.glob([path, '/**/*.png'].join('/')).each do |file| UI.verbose("Removing alpha channel from '#{file}'") `sips -s format bmp '#{file}' &> /dev/null` # &> /dev/null because there is warning because of the extension `sips -s format png '#{file}'` end end end end
Version data entries
656 entries across 656 versions & 5 rubygems