Sha256: 42e6305335abc3cd34899205a1bb5e72bac8b94b4e6df9074bf32898d141c106

Contents?: true

Size: 211 Bytes

Versions: 67

Compression:

Stored size: 211 Bytes

Contents

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

# Demonstrate the Image#blur_image method

img = Magick::Image.read('images/Flower_Hat.jpg').first

img = img.motion_blur(0,7,180)

img.write('motion_blur.jpg')
exit

Version data entries

67 entries across 67 versions & 2 rubygems

Version Path
rmagick-2.7.0 doc/ex/motion_blur.rb
rmagick-2.7.1 doc/ex/motion_blur.rb
rmagick-2.7.2 doc/ex/motion_blur.rb
rmagick-2.8.0 doc/ex/motion_blur.rb
rmagick-2.9.0 doc/ex/motion_blur.rb
rmagick-2.9.1 doc/ex/motion_blur.rb
rmagick-2.9.2 doc/ex/motion_blur.rb