Sha256: 3d819ace7db426aaa4b509813f8bd9c2cebc60e01b115f4f791c8058a054a69f

Contents?: true

Size: 208 Bytes

Versions: 13

Compression:

Stored size: 208 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

13 entries across 13 versions & 3 rubygems

Version Path
rmagick-windows-2.16.5 doc/ex/motion_blur.rb
rmagick-windows-2.16.4 doc/ex/motion_blur.rb
rmagick-windows-2.16.3 doc/ex/motion_blur.rb
rmagick-windows-2.16.2 doc/ex/motion_blur.rb
rmagick-windows-2.16.1 doc/ex/motion_blur.rb
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/rmagick-2.16.0/doc/ex/motion_blur.rb
rmagick-2.16.0 doc/ex/motion_blur.rb
rmagick-2.15.4 doc/ex/motion_blur.rb
rmagick-2.15.3 doc/ex/motion_blur.rb
rmagick-2.15.2 doc/ex/motion_blur.rb
rmagick-2.15.1 doc/ex/motion_blur.rb
rmagick-2.15.0 doc/ex/motion_blur.rb
rmagick-2.14.0 doc/ex/motion_blur.rb