Sha256: dd927f26cf4ac4aca4beff355fff6513578b383f4a1188ad8545d86bd32f7302
Contents?: true
Size: 1.01 KB
Versions: 18
Compression:
Stored size: 1.01 KB
Contents
require 'shellwords' module Snapshot # This class takes care of rotating images class ScreenshotRotate # @param (String) The path in which the screenshots are located in def run(path) Helper.log.debug "Rotating the screenshots (if necessary)" rotate(path) end def rotate(path) Dir.glob([path, '/**/*.png'].join('/')).each do |file| Helper.log.debug "Rotating '#{file}'" if $verbose command = nil if file.end_with? "landscapeleft.png" command = "sips -r -90 '#{file}'" elsif file.end_with? "landscaperight.png" command = "sips -r 90 '#{file}'" elsif file.end_with? "portrait_upsidedown.png" command = "sips -r 180 '#{file}'" end next unless command # Only rotate if we need to PTY.spawn(command) do |r, w, pid| r.sync r.each do |line| # We need to read this otherwise things hang end ::Process.wait pid end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems