Sha256: 9ffe500d72e8843ebb4c640da2fd5e3b177c4062338d6f261db42711784140e8

Contents?: true

Size: 851 Bytes

Versions: 425

Compression:

Stored size: 851 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 is_complex_framing_mode?
      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

425 entries across 425 versions & 5 rubygems

Version Path
fastlane-2.120.0.beta.20190409200021 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190408200017 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190407200059 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190406200021 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190405200012 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190404200009 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190403200039 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190402200013 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190401200056 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190331200023 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190330200100 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190329200012 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190328200010 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190327200117 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190326200014 frameit/lib/frameit/mac_editor.rb
fastlane-2.120.0.beta.20190325200020 frameit/lib/frameit/mac_editor.rb
fastlane-2.119.0 frameit/lib/frameit/mac_editor.rb
fastlane-2.119.0.beta.20190324200014 frameit/lib/frameit/mac_editor.rb
fastlane-2.119.0.beta.20190323200019 frameit/lib/frameit/mac_editor.rb
fastlane-2.119.0.beta.20190322200024 frameit/lib/frameit/mac_editor.rb