Sha256: f56e02062ac7e47bd5457a073b92c8f6321e004081d73cb98ff47d8fa1b8a903

Contents?: true

Size: 527 Bytes

Versions: 67

Compression:

Stored size: 527 Bytes

Contents

#! /usr/local/bin/ruby -w

require 'RMagick'

# Demonstrate the morph method

# Read 4 digit image files. Create an
# animated morph sequence by inserting 8
# in-between images between each pair of digits.

i = Magick::ImageList.new
number = '0'
4.times do
    i.read "images/Button_" + number + ".gif"
    number.succ!
    end

puts "This may take a few seconds..."
morph = i.morph 8
morph.delay = 12
morph.iterations = 10000
# Display the resulting sequence as an animation.
# morph.animate(12)
morph.write "morph.gif"
exit

Version data entries

67 entries across 67 versions & 2 rubygems

Version Path
rmagick-2.13.4 doc/ex/morph.rb
rmagick-2.13.3 doc/ex/morph.rb
rmagick-2.13.3.rc1 doc/ex/morph.rb
rmagick-2.13.2 doc/ex/morph.rb
rdp-rmagick-0.0.0 doc/ex/morph.rb
rmagick-2.13.1 doc/ex/morph.rb
rmagick-2.12.2 doc/ex/morph.rb
rmagick-2.12.1 doc/ex/morph.rb
rmagick-2.12.0 doc/ex/morph.rb
rmagick-2.11.1 doc/ex/morph.rb
rmagick-2.10.0 doc/ex/morph.rb
rmagick-2.11.0 doc/ex/morph.rb
rmagick-1.10.1 doc/ex/morph.rb
rmagick-1.10.0 doc/ex/morph.rb
rmagick-1.12.0 doc/ex/morph.rb
rmagick-1.11.1 doc/ex/morph.rb
rmagick-1.11.0 doc/ex/morph.rb
rmagick-1.13.0 doc/ex/morph.rb
rmagick-1.15.1 doc/ex/morph.rb
rmagick-1.14.0 doc/ex/morph.rb