Sha256: ffe955db0c4b72ee9822cb6ee1882bf1fc32e813078c92d0039232b6c4d0a74b

Contents?: true

Size: 210 Bytes

Versions: 6

Compression:

Stored size: 210 Bytes

Contents

#!/usr/bin/env 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

6 entries across 6 versions & 1 rubygems

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