Sha256: 68f744f073900d58ccfddbd610095654bd86e57f0cf3737994b632e28aa2ab9f

Contents?: true

Size: 773 Bytes

Versions: 67

Compression:

Stored size: 773 Bytes

Contents

#!/usr/local/bin/ruby -w
require 'RMagick'

# Demonstrate the Image#chop method

img = Magick::Image.read('images/Flower_Hat.jpg')[0]

# Chop the specified rectangle out of the img.
chopped = img.chop(0, img.rows/2, img.columns/2, img.rows)

# Make a "before" image by highlighting the chopped area.
gc = Magick::Draw.new
gc.fill('white')
gc.stroke('transparent')
gc.fill_opacity(0.25)
gc.rectangle(0, img.rows/2, img.columns/2, img.rows)
gc.draw(img)

img.write('chop_before.jpg')

# Create a image to use as a background for
# the after image. Make the chopped image the
# same size as before the chop.
bg = Magick::Image.new(img.columns, img.rows)

chopped = bg.composite(chopped, Magick::NorthEastGravity, Magick::OverCompositeOp)

chopped.write('chop_after.jpg')
exit

Version data entries

67 entries across 67 versions & 2 rubygems

Version Path
rmagick-1.7.2 doc/ex/chop.rb
rmagick-1.7.3 doc/ex/chop.rb
rmagick-1.8.0 doc/ex/chop.rb
rmagick-1.8.1 doc/ex/chop.rb
rmagick-1.9.0 doc/ex/chop.rb
rmagick-1.8.3 doc/ex/chop.rb
rmagick-1.8.2 doc/ex/chop.rb
rmagick-1.9.2 doc/ex/chop.rb
rmagick-1.9.1 doc/ex/chop.rb
rmagick-2.1.0 doc/ex/chop.rb
rmagick-2.0.0 doc/ex/chop.rb
rmagick-1.9.3 doc/ex/chop.rb
rmagick-2.2.2 doc/ex/chop.rb
rmagick-2.2.0 doc/ex/chop.rb
rmagick-2.3.0 doc/ex/chop.rb
rmagick-2.5.1 doc/ex/chop.rb
rmagick-2.4.0 doc/ex/chop.rb
rmagick-2.5.0 doc/ex/chop.rb
rmagick-2.5.2 doc/ex/chop.rb
rmagick-2.6.0 doc/ex/chop.rb