Sha256: d56100b1f604c48c03f75b8cd7e2958127db0a3a4400691d4539fe22b3135083

Contents?: true

Size: 1.28 KB

Versions: 6

Compression:

Stored size: 1.28 KB

Contents

#!/usr/bin/env ruby -w

#=======================================================#
# Thanks to Robert Wagner for the idea of allowing a    #
# GravityType instead of the x- and y-offset arguments! #
#=======================================================#

# Demo the use of the GravityType argument to Image#crop.

require 'rmagick'
include Magick

shorts = Image.read('images/Shorts.jpg').first

regwidth = shorts.columns / 2
regheight = shorts.rows / 2

mask = Image.new(regwidth, regheight) { self.background_color = 'white' }
mask.opacity = 0.50 * TransparentOpacity

black = Image.new(shorts.columns, shorts.rows) { self.background_color = 'black' }
pairs = ImageList.new

[NorthWestGravity, NorthGravity, NorthEastGravity,
 WestGravity, CenterGravity, EastGravity,
 SouthWestGravity, SouthGravity, SouthEastGravity].each do |gravity|
  pattern = shorts.composite(mask, gravity, OverCompositeOp)
  cropped = shorts.crop(gravity, regwidth, regheight)
  result = black.composite(cropped, gravity, OverCompositeOp)
  result.border_color = 'white'
  pairs << pattern
  pairs << result
end

# Montage into a single image
montage = pairs.montage do
  self.geometry = "#{pairs.columns}x#{pairs.rows}+0+0"
  self.tile = '6x3'
  self.border_width = 1
end
montage.write('crop_with_gravity.miff')
# montage.display

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rmagick-4.1.0.rc2 doc/ex/crop_with_gravity.rb
rmagick-4.1.0.rc1 doc/ex/crop_with_gravity.rb
rmagick-4.0.0 doc/ex/crop_with_gravity.rb
rmagick-3.2.0 doc/ex/crop_with_gravity.rb
rmagick-3.1.0 doc/ex/crop_with_gravity.rb
rmagick-3.0.0 doc/ex/crop_with_gravity.rb