Sha256: 08d029e9b8479c974b762fcab455f5e6f9cc3d9dfd02168560b5ad7412c86c9e
Contents?: true
Size: 370 Bytes
Versions: 67
Compression:
Stored size: 370 Bytes
Contents
#! /usr/local/bin/ruby -w require 'RMagick' # Demonstrate the Image#swirl method img = Magick::Image.read('images/Flower_Hat.jpg').first # Make an animated image. animation = Magick::ImageList.new animation << img.copy 30.step(360,45) { |degrees| animation << img.swirl(degrees) } animation.delay = 20 animation.iterations = 10000 animation.write('swirl.gif') exit
Version data entries
67 entries across 67 versions & 2 rubygems