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.102.0 frameit/lib/frameit/mac_editor.rb
fastlane-2.101.1 frameit/lib/frameit/mac_editor.rb
fastlane-2.101.0 frameit/lib/frameit/mac_editor.rb
fastlane-2.100.1 frameit/lib/frameit/mac_editor.rb
fastlane-2.100.0 frameit/lib/frameit/mac_editor.rb
fastlane-2.99.1 frameit/lib/frameit/mac_editor.rb
fastlane-2.99.0 frameit/lib/frameit/mac_editor.rb
fastlane-2.98.0 frameit/lib/frameit/mac_editor.rb
fastlane-2.97.0 frameit/lib/frameit/mac_editor.rb
fastlane-2.96.1 frameit/lib/frameit/mac_editor.rb
fastlane-2.96.0 frameit/lib/frameit/mac_editor.rb
fastlane-2.96.0.beta.20180521050117 frameit/lib/frameit/mac_editor.rb
fastlane-2.96.0.beta.20180520050019 frameit/lib/frameit/mac_editor.rb
fastlane-2.96.0.beta.20180519050103 frameit/lib/frameit/mac_editor.rb
fastlane-2.96.0.beta.20180518050116 frameit/lib/frameit/mac_editor.rb
fastlane-2.96.0.beta.20180517050058 frameit/lib/frameit/mac_editor.rb
fastlane-2.96.0.beta.20180516050022 frameit/lib/frameit/mac_editor.rb
fastlane-2.96.0.beta.20180515050025 frameit/lib/frameit/mac_editor.rb
fastlane-2.96.0.beta.20180514050029 frameit/lib/frameit/mac_editor.rb
fastlane-2.96.0.beta.20180513050015 frameit/lib/frameit/mac_editor.rb