Sha256: 89a21cc3c2d9c8fbf7a344c8f112485df47e40c589af5f13adb875a8f30272a6

Contents?: true

Size: 956 Bytes

Versions: 87

Compression:

Stored size: 956 Bytes

Contents

module RedArtisan
  module CoreImage
    module Filters
      module Perspective
        
        def perspective(top_left, top_right, bottom_left, bottom_right)
          create_core_image_context(@original.extent.size.width, @original.extent.size.height)
          
          @original.perspective_transform :inputTopLeft => top_left, :inputTopRight => top_right, :inputBottomLeft => bottom_left, :inputBottomRight => bottom_right do |transformed|
            @target = transformed
          end
        end

        def perspective_tiled(top_left, top_right, bottom_left, bottom_right)
          create_core_image_context(@original.extent.size.width, @original.extent.size.height)
          
          @original.perspective_tile :inputTopLeft => top_left, :inputTopRight => top_right, :inputBottomLeft => bottom_left, :inputBottomRight => bottom_right do |tiled|
            @target = tiled
          end
        end
        
      end
    end
  end
end

Version data entries

87 entries across 87 versions & 17 rubygems

Version Path
pothoven-attachment_fu-3.3.2 vendor/red_artisan/core_image/filters/perspective.rb
pothoven-attachment_fu-3.3.1 vendor/red_artisan/core_image/filters/perspective.rb
pothoven-attachment_fu-3.3.0 vendor/red_artisan/core_image/filters/perspective.rb
ss-attachment_fu-3.4.4 vendor/red_artisan/core_image/filters/perspective.rb
ss-attachment_fu-3.4.3 vendor/red_artisan/core_image/filters/perspective.rb
pothoven-attachment_fu-3.2.18 vendor/red_artisan/core_image/filters/perspective.rb
pothoven-attachment_fu-3.2.17 vendor/red_artisan/core_image/filters/perspective.rb
ss-attachment_fu-3.4.2 vendor/red_artisan/core_image/filters/perspective.rb
ss-attachment_fu-3.4.1 vendor/red_artisan/core_image/filters/perspective.rb
ss-attachment_fu-3.4.0 vendor/red_artisan/core_image/filters/perspective.rb
ss-attachment_fu-3.3.0 vendor/red_artisan/core_image/filters/perspective.rb
pothoven-attachment_fu-3.2.16 vendor/red_artisan/core_image/filters/perspective.rb
ss-attachment_fu-3.2.19 vendor/red_artisan/core_image/filters/perspective.rb
ss-attachment_fu-3.2.18 vendor/red_artisan/core_image/filters/perspective.rb
ss-attachment_fu-3.2.17 vendor/red_artisan/core_image/filters/perspective.rb
attachment_zen-1.0.1 vendor/red_artisan/core_image/filters/perspective.rb
pothoven-attachment_fu-3.2.15 vendor/red_artisan/core_image/filters/perspective.rb
pothoven-attachment_fu-3.2.14 vendor/red_artisan/core_image/filters/perspective.rb
artmotion-attachment_fu-0.0.1 vendor/red_artisan/core_image/filters/perspective.rb
artmotion-attachment_fu-0.0.2 vendor/red_artisan/core_image/filters/perspective.rb