Sha256: 3bf6263ec501fc6f1f3977594214c911452a97feeff5de592559c70dc8c5d335

Contents?: true

Size: 844 Bytes

Versions: 231

Compression:

Stored size: 844 Bytes

Contents

require 'mini_magick'
require_relative 'editor'

module Frameit
  # Responsible for framing Mac Screenshots
  class MacEditor < Editor
    def prepare_image
      image = super
      image.resize("#{offset['width']}x") if offset['width']
    end

    def put_device_into_background(background)
      self.top_space_above_device = offset['titleHeight'] # needed for centering the title

      @image = background.composite(image, "png") do |c|
        c.compose("Over")
        c.geometry(offset['offset'])
      end

      return image
    end

    def load_frame
      nil # Macs don't need frames - backgrounds only
    end

    def should_add_title?
      true # Mac screenshots always need a background
    end

    def generate_background
      MiniMagick::Image.open(fetch_config['background']) # no resizing on the Mac
    end
  end
end

Version data entries

231 entries across 231 versions & 1 rubygems

Version Path
fastlane-2.115.0.beta.20190122200028 frameit/lib/frameit/mac_editor.rb
fastlane-2.115.0.beta.20190120200101 frameit/lib/frameit/mac_editor.rb
fastlane-2.115.0.beta.20190119200019 frameit/lib/frameit/mac_editor.rb
fastlane-2.115.0.beta.20190118200015 frameit/lib/frameit/mac_editor.rb
fastlane-2.115.0.beta.20190117200016 frameit/lib/frameit/mac_editor.rb
fastlane-2.114.0 frameit/lib/frameit/mac_editor.rb
fastlane-2.114.0.beta.20190116200018 frameit/lib/frameit/mac_editor.rb
fastlane-2.114.0.beta.20190115200110 frameit/lib/frameit/mac_editor.rb
fastlane-2.114.0.beta.20190114200053 frameit/lib/frameit/mac_editor.rb
fastlane-2.114.0.beta.20190113200019 frameit/lib/frameit/mac_editor.rb
fastlane-2.114.0.beta.20190112200032 frameit/lib/frameit/mac_editor.rb
fastlane-2.114.0.beta.20190111200053 frameit/lib/frameit/mac_editor.rb
fastlane-2.114.0.beta.20190110200051 frameit/lib/frameit/mac_editor.rb
fastlane-2.114.0.beta.20190109200053 frameit/lib/frameit/mac_editor.rb
fastlane-2.114.0.beta.20190108200048 frameit/lib/frameit/mac_editor.rb
fastlane-2.113.0 frameit/lib/frameit/mac_editor.rb
fastlane-2.113.0.beta.20190107200010 frameit/lib/frameit/mac_editor.rb
fastlane-2.113.0.beta.20190106200016 frameit/lib/frameit/mac_editor.rb
fastlane-2.113.0.beta.20190105200036 frameit/lib/frameit/mac_editor.rb
fastlane-2.113.0.beta.20190104200013 frameit/lib/frameit/mac_editor.rb