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-1.14.1 doc/ex/morph.rb
rmagick-1.15.0 doc/ex/morph.rb
rmagick-1.15.10 doc/ex/morph.rb
rmagick-1.15.12 doc/ex/morph.rb
rmagick-1.15.14 doc/ex/morph.rb
rmagick-1.15.13 doc/ex/morph.rb
rmagick-1.15.15 doc/ex/morph.rb
rmagick-1.15.11 doc/ex/morph.rb
rmagick-1.15.17 doc/ex/morph.rb
rmagick-1.15.2 doc/ex/morph.rb
rmagick-1.15.3 doc/ex/morph.rb
rmagick-1.15.4 doc/ex/morph.rb
rmagick-1.15.16 doc/ex/morph.rb
rmagick-1.15.6 doc/ex/morph.rb
rmagick-1.15.7 doc/ex/morph.rb
rmagick-1.15.8 doc/ex/morph.rb
rmagick-1.15.5 doc/ex/morph.rb
rmagick-1.7.1 doc/ex/morph.rb
rmagick-1.7.2 doc/ex/morph.rb
rmagick-1.7.3 doc/ex/morph.rb