Sha256: c1ef41d106def29429bbb69ad90b39611dbb385a917370dddb45282a7ad13ff1

Contents?: true

Size: 1.79 KB

Versions: 14

Compression:

Stored size: 1.79 KB

Contents

module Fleximage
  module Operator
    
    # Crops the image without doing any resizing first.  The operation crops from the :+from+ coordinate,
    # and returns an image of size :+size+ down and right from there.
    # 
    #   image.crop(options = {})
    #
    # Use the following keys in the +options+ hash:
    #
    # * +gravity+: Select gravity for the crop. Default is :top_left (Magick::NorthWestGravity)
    #   Choose from GRAVITITES constant defined in base.rb.
    # * +from+: coorinates for the upper left corner of resulting image.
    # * +size+: The size of the resulting image, going down and to the right of the :+from+ coordinate.
    # 
    #  size and from options are *required*.
    #
    # Example:
    #
    #   @photo.operate do |image|
    #     image.crop(
    #       :from => '100x50',
    #       :size => '500x350'
    #     )
    #   end
    #
    # or
    #
    #   @photo.operate do |image|
    #     image.crop(
    #       :gravity => :center,
    #       :from    => '100x50',
    #       :size    => '500x350'
    #     )
    #   end
    class Crop < Operator::Base
      def operate(options = {})
        options = options.symbolize_keys
        options.reverse_merge!(:gravity => :top_left)

        # required integer keys
        [:from, :size].each do |key|
          raise ArgumentError, ":#{key} must be included in crop options" unless options[key]
          options[key] = size_to_xy(options[key])
        end

        # width and height must not be zero
        options[:size].each do |dimension|
          raise ArgumentError, ":size must not be zero for X or Y" if dimension.zero?
        end

        # crop
        @image.crop!(symbol_to_gravity(options[:gravity]), options[:from][0], options[:from][1], options[:size][0], options[:size][1], true)
      end
    end
    
  end
end

Version data entries

14 entries across 14 versions & 4 rubygems

Version Path
tvdeyen-fleximage-1.2.0 lib/fleximage/operator/crop.rb
tvdeyen-fleximage-1.1.1 lib/fleximage/operator/crop.rb
tvdeyen-fleximage-1.0.9 lib/fleximage/operator/crop.rb
tvdeyen-fleximage-1.0.8 lib/fleximage/operator/crop.rb
tvdeyen-fleximage-1.0.7 lib/fleximage/operator/crop.rb
robinboening-fleximage-1.0.6 lib/fleximage/operator/crop.rb
robinboening-fleximage-1.0.4 lib/fleximage/operator/crop.rb
tvdeyen-fleximage-1.0.5 lib/fleximage/operator/crop.rb
fleximage-1.0.4 lib/fleximage/operator/crop.rb
dougmcbride-fleximage-1.0.3 lib/fleximage/operator/crop.rb
fleximage-1.0.3 lib/fleximage/operator/crop.rb
fleximage-1.0.2 lib/fleximage/operator/crop.rb
fleximage-1.0.1 lib/fleximage/operator/crop.rb
fleximage-1.0.0 lib/fleximage/operator/crop.rb