rmagick 2.12.2 → 2.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rmagick might be problematic. Click here for more details.
- data/ChangeLog +12 -0
 - data/Doxyfile +1514 -0
 - data/README.html +2 -171
 - data/doc/comtasks.html +2 -2
 - data/doc/constants.html +2 -2
 - data/doc/draw.html +2 -2
 - data/doc/ilist.html +2 -2
 - data/doc/image1.html +2 -2
 - data/doc/image2.html +2 -2
 - data/doc/image3.html +2 -2
 - data/doc/imageattrs.html +2 -2
 - data/doc/imusage.html +2 -2
 - data/doc/index.html +3 -3
 - data/doc/info.html +2 -2
 - data/doc/magick.html +2 -2
 - data/doc/optequiv.html +2 -2
 - data/doc/rvg.html +2 -2
 - data/doc/rvgclip.html +2 -2
 - data/doc/rvggroup.html +2 -2
 - data/doc/rvgimage.html +2 -2
 - data/doc/rvgpattern.html +2 -2
 - data/doc/rvgshape.html +2 -2
 - data/doc/rvgstyle.html +2 -2
 - data/doc/rvgtext.html +2 -2
 - data/doc/rvgtspan.html +2 -2
 - data/doc/rvgtut.html +2 -2
 - data/doc/rvguse.html +2 -2
 - data/doc/rvgxform.html +2 -2
 - data/doc/struct.html +12 -8
 - data/doc/usage.html +2 -2
 - data/ext/RMagick/MANIFEST +311 -309
 - data/ext/RMagick/extconf.rb +27 -3
 - data/ext/RMagick/rmagick.c +151 -69
 - data/ext/RMagick/rmagick.h +218 -158
 - data/ext/RMagick/rmdraw.c +616 -261
 - data/ext/RMagick/rmenum.c +373 -179
 - data/ext/RMagick/rmfill.c +166 -71
 - data/ext/RMagick/rmilist.c +323 -146
 - data/ext/RMagick/rmimage.c +4994 -1756
 - data/ext/RMagick/rminfo.c +1004 -366
 - data/ext/RMagick/rmmain.c +62 -27
 - data/ext/RMagick/rmmontage.c +222 -97
 - data/ext/RMagick/rmpixel.c +454 -155
 - data/ext/RMagick/rmstruct.c +305 -153
 - data/ext/RMagick/rmutil.c +531 -263
 - data/lib/rvg/misc.rb +1 -1
 - data/rmagick.gemspec +3 -3
 - metadata +313 -310
 
    
        data/lib/rvg/misc.rb
    CHANGED
    
    
    
        data/rmagick.gemspec
    CHANGED
    
    | 
         @@ -1,11 +1,11 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            require 'date'
         
     | 
| 
       2 
2 
     | 
    
         
             
            Gem::Specification.new do |s|
         
     | 
| 
       3 
3 
     | 
    
         
             
              s.name = %q{rmagick}
         
     | 
| 
       4 
     | 
    
         
            -
              s.version = "2. 
     | 
| 
      
 4 
     | 
    
         
            +
              s.version = "2.13.1"
         
     | 
| 
       5 
5 
     | 
    
         
             
              s.date = Date.today.to_s
         
     | 
| 
       6 
6 
     | 
    
         
             
              s.summary = %q{Ruby binding to ImageMagick}
         
     | 
| 
       7 
7 
     | 
    
         
             
              s.description = %q{RMagick is an interface between Ruby and ImageMagick.}
         
     | 
| 
       8 
     | 
    
         
            -
              s. 
     | 
| 
      
 8 
     | 
    
         
            +
              s.authors = [%q{Tim Hunter}, %q{Omer Bar-or}, %q{Benjamin Thomas}]
         
     | 
| 
       9 
9 
     | 
    
         
             
              s.email = %q{rmagick@rubyforge.org}
         
     | 
| 
       10 
10 
     | 
    
         
             
              s.homepage = %q{http://rubyforge.org/projects/rmagick}
         
     | 
| 
       11 
11 
     | 
    
         
             
              s.files = Dir.glob('**/*')
         
     | 
| 
         @@ -16,5 +16,5 @@ Gem::Specification.new do |s| 
     | 
|
| 
       16 
16 
     | 
    
         
             
              s.extensions = %w{ext/RMagick/extconf.rb}
         
     | 
| 
       17 
17 
     | 
    
         
             
              s.has_rdoc = false
         
     | 
| 
       18 
18 
     | 
    
         
             
              s.required_ruby_version = '>= 1.8.5'
         
     | 
| 
       19 
     | 
    
         
            -
              s.requirements << 'ImageMagick 6. 
     | 
| 
      
 19 
     | 
    
         
            +
              s.requirements << 'ImageMagick 6.4.9 or later'
         
     | 
| 
       20 
20 
     | 
    
         
             
            end
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,15 +1,17 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: rmagick
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
              version: 2. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 2.13.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors: 
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Tim Hunter
         
     | 
| 
      
 8 
     | 
    
         
            +
            - Omer Bar-or
         
     | 
| 
      
 9 
     | 
    
         
            +
            - Benjamin Thomas
         
     | 
| 
       8 
10 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
11 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
12 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
13 
     | 
    
         | 
| 
       12 
     | 
    
         
            -
            date:  
     | 
| 
      
 14 
     | 
    
         
            +
            date: 2010-04-05 00:00:00 -07:00
         
     | 
| 
       13 
15 
     | 
    
         
             
            default_executable: 
         
     | 
| 
       14 
16 
     | 
    
         
             
            dependencies: []
         
     | 
| 
       15 
17 
     | 
    
         | 
| 
         @@ -23,359 +25,360 @@ extra_rdoc_files: [] 
     | 
|
| 
       23 
25 
     | 
    
         | 
| 
       24 
26 
     | 
    
         
             
            files: 
         
     | 
| 
       25 
27 
     | 
    
         
             
            - README.html
         
     | 
| 
       26 
     | 
    
         
            -
            -  
     | 
| 
       27 
     | 
    
         
            -
            -  
     | 
| 
      
 28 
     | 
    
         
            +
            - ext/RMagick/extconf.rb
         
     | 
| 
      
 29 
     | 
    
         
            +
            - ext/RMagick/rmimage.c
         
     | 
| 
      
 30 
     | 
    
         
            +
            - ext/RMagick/rmagick.c
         
     | 
| 
      
 31 
     | 
    
         
            +
            - ext/RMagick/rminfo.c
         
     | 
| 
      
 32 
     | 
    
         
            +
            - ext/RMagick/rmstruct.c
         
     | 
| 
      
 33 
     | 
    
         
            +
            - ext/RMagick/rmenum.c
         
     | 
| 
      
 34 
     | 
    
         
            +
            - ext/RMagick/rmdraw.c
         
     | 
| 
      
 35 
     | 
    
         
            +
            - ext/RMagick/MANIFEST
         
     | 
| 
      
 36 
     | 
    
         
            +
            - ext/RMagick/rmpixel.c
         
     | 
| 
      
 37 
     | 
    
         
            +
            - ext/RMagick/rmfill.c
         
     | 
| 
      
 38 
     | 
    
         
            +
            - ext/RMagick/rmutil.c
         
     | 
| 
      
 39 
     | 
    
         
            +
            - ext/RMagick/rmilist.c
         
     | 
| 
      
 40 
     | 
    
         
            +
            - ext/RMagick/rmmontage.c
         
     | 
| 
      
 41 
     | 
    
         
            +
            - ext/RMagick/rmmain.c
         
     | 
| 
      
 42 
     | 
    
         
            +
            - ext/RMagick/rmagick.h
         
     | 
| 
       28 
43 
     | 
    
         
             
            - rmagick.gemspec
         
     | 
| 
       29 
     | 
    
         
            -
            -  
     | 
| 
       30 
     | 
    
         
            -
            -  
     | 
| 
      
 44 
     | 
    
         
            +
            - Doxyfile
         
     | 
| 
      
 45 
     | 
    
         
            +
            - examples/rotating_text.rb
         
     | 
| 
      
 46 
     | 
    
         
            +
            - examples/histogram.rb
         
     | 
| 
      
 47 
     | 
    
         
            +
            - examples/vignette.rb
         
     | 
| 
      
 48 
     | 
    
         
            +
            - examples/find_similar_region.rb
         
     | 
| 
      
 49 
     | 
    
         
            +
            - examples/identify.rb
         
     | 
| 
      
 50 
     | 
    
         
            +
            - examples/import_export.rb
         
     | 
| 
      
 51 
     | 
    
         
            +
            - examples/spinner.rb
         
     | 
| 
      
 52 
     | 
    
         
            +
            - examples/describe.rb
         
     | 
| 
      
 53 
     | 
    
         
            +
            - examples/constitute.rb
         
     | 
| 
      
 54 
     | 
    
         
            +
            - examples/pattern_fill.rb
         
     | 
| 
      
 55 
     | 
    
         
            +
            - examples/thumbnail.rb
         
     | 
| 
      
 56 
     | 
    
         
            +
            - examples/crop_with_gravity.rb
         
     | 
| 
      
 57 
     | 
    
         
            +
            - examples/demo.rb
         
     | 
| 
      
 58 
     | 
    
         
            +
            - examples/image_opacity.rb
         
     | 
| 
      
 59 
     | 
    
         
            +
            - metaconfig
         
     | 
| 
       31 
60 
     | 
    
         
             
            - post-install.rb
         
     | 
| 
       32 
61 
     | 
    
         
             
            - post-clean.rb
         
     | 
| 
       33 
     | 
    
         
            -
            -  
     | 
| 
       34 
     | 
    
         
            -
            - lib/rvg/stretchable.rb
         
     | 
| 
       35 
     | 
    
         
            -
            - lib/rvg/rvg.rb
         
     | 
| 
       36 
     | 
    
         
            -
            - lib/rvg/deep_equal.rb
         
     | 
| 
       37 
     | 
    
         
            -
            - lib/rvg/transformable.rb
         
     | 
| 
       38 
     | 
    
         
            -
            - lib/rvg/embellishable.rb
         
     | 
| 
       39 
     | 
    
         
            -
            - lib/rvg/describable.rb
         
     | 
| 
       40 
     | 
    
         
            -
            - lib/rvg/units.rb
         
     | 
| 
      
 62 
     | 
    
         
            +
            - lib/RMagick.rb
         
     | 
| 
       41 
63 
     | 
    
         
             
            - lib/rvg/paint.rb
         
     | 
| 
       42 
     | 
    
         
            -
            - lib/rvg/ 
     | 
| 
      
 64 
     | 
    
         
            +
            - lib/rvg/stylable.rb
         
     | 
| 
       43 
65 
     | 
    
         
             
            - lib/rvg/clippath.rb
         
     | 
| 
      
 66 
     | 
    
         
            +
            - lib/rvg/units.rb
         
     | 
| 
      
 67 
     | 
    
         
            +
            - lib/rvg/deep_equal.rb
         
     | 
| 
      
 68 
     | 
    
         
            +
            - lib/rvg/stretchable.rb
         
     | 
| 
       44 
69 
     | 
    
         
             
            - lib/rvg/pathdata.rb
         
     | 
| 
      
 70 
     | 
    
         
            +
            - lib/rvg/rvg.rb
         
     | 
| 
      
 71 
     | 
    
         
            +
            - lib/rvg/transformable.rb
         
     | 
| 
       45 
72 
     | 
    
         
             
            - lib/rvg/text.rb
         
     | 
| 
       46 
     | 
    
         
            -
            - lib/rvg/ 
     | 
| 
      
 73 
     | 
    
         
            +
            - lib/rvg/describable.rb
         
     | 
| 
      
 74 
     | 
    
         
            +
            - lib/rvg/embellishable.rb
         
     | 
| 
       47 
75 
     | 
    
         
             
            - lib/rvg/misc.rb
         
     | 
| 
       48 
     | 
    
         
            -
            - lib/ 
     | 
| 
       49 
     | 
    
         
            -
            -  
     | 
| 
       50 
     | 
    
         
            -
            -  
     | 
| 
       51 
     | 
    
         
            -
            -  
     | 
| 
       52 
     | 
    
         
            -
            - examples/vignette.rb
         
     | 
| 
       53 
     | 
    
         
            -
            - examples/import_export.rb
         
     | 
| 
       54 
     | 
    
         
            -
            - examples/constitute.rb
         
     | 
| 
       55 
     | 
    
         
            -
            - examples/demo.rb
         
     | 
| 
       56 
     | 
    
         
            -
            - examples/histogram.rb
         
     | 
| 
       57 
     | 
    
         
            -
            - examples/identify.rb
         
     | 
| 
       58 
     | 
    
         
            -
            - examples/pattern_fill.rb
         
     | 
| 
       59 
     | 
    
         
            -
            - examples/rotating_text.rb
         
     | 
| 
       60 
     | 
    
         
            -
            - examples/find_similar_region.rb
         
     | 
| 
       61 
     | 
    
         
            -
            - examples/thumbnail.rb
         
     | 
| 
       62 
     | 
    
         
            -
            - examples/describe.rb
         
     | 
| 
       63 
     | 
    
         
            -
            - examples/crop_with_gravity.rb
         
     | 
| 
      
 76 
     | 
    
         
            +
            - lib/rvg/container.rb
         
     | 
| 
      
 77 
     | 
    
         
            +
            - ChangeLog
         
     | 
| 
      
 78 
     | 
    
         
            +
            - README-Mac-OSX.txt
         
     | 
| 
      
 79 
     | 
    
         
            +
            - uninstall.rb
         
     | 
| 
       64 
80 
     | 
    
         
             
            - post-setup.rb
         
     | 
| 
       65 
     | 
    
         
            -
            -  
     | 
| 
       66 
     | 
    
         
            -
            -  
     | 
| 
       67 
     | 
    
         
            -
            -  
     | 
| 
       68 
     | 
    
         
            -
            -  
     | 
| 
       69 
     | 
    
         
            -
            -  
     | 
| 
       70 
     | 
    
         
            -
            - ext/RMagick/rmmontage.c
         
     | 
| 
       71 
     | 
    
         
            -
            - ext/RMagick/rmpixel.c
         
     | 
| 
       72 
     | 
    
         
            -
            - ext/RMagick/rmilist.c
         
     | 
| 
       73 
     | 
    
         
            -
            - ext/RMagick/rmagick.c
         
     | 
| 
       74 
     | 
    
         
            -
            - ext/RMagick/rmdraw.c
         
     | 
| 
       75 
     | 
    
         
            -
            - ext/RMagick/rmimage.c
         
     | 
| 
       76 
     | 
    
         
            -
            - ext/RMagick/rmfill.c
         
     | 
| 
       77 
     | 
    
         
            -
            - ext/RMagick/rmmain.c
         
     | 
| 
       78 
     | 
    
         
            -
            - ext/RMagick/rminfo.c
         
     | 
| 
       79 
     | 
    
         
            -
            - ext/RMagick/extconf.rb
         
     | 
| 
      
 81 
     | 
    
         
            +
            - setup.rb
         
     | 
| 
      
 82 
     | 
    
         
            +
            - doc/rvgclip.html
         
     | 
| 
      
 83 
     | 
    
         
            +
            - doc/rvgpattern.html
         
     | 
| 
      
 84 
     | 
    
         
            +
            - doc/rvgtspan.html
         
     | 
| 
      
 85 
     | 
    
         
            +
            - doc/rvgshape.html
         
     | 
| 
       80 
86 
     | 
    
         
             
            - doc/rvgstyle.html
         
     | 
| 
      
 87 
     | 
    
         
            +
            - doc/constants.html
         
     | 
| 
      
 88 
     | 
    
         
            +
            - doc/usage.html
         
     | 
| 
      
 89 
     | 
    
         
            +
            - doc/rvgtut.html
         
     | 
| 
      
 90 
     | 
    
         
            +
            - doc/ilist.html
         
     | 
| 
       81 
91 
     | 
    
         
             
            - doc/rvguse.html
         
     | 
| 
       82 
     | 
    
         
            -
            - doc/ 
     | 
| 
       83 
     | 
    
         
            -
            - doc/ 
     | 
| 
      
 92 
     | 
    
         
            +
            - doc/rvggroup.html
         
     | 
| 
      
 93 
     | 
    
         
            +
            - doc/draw.html
         
     | 
| 
      
 94 
     | 
    
         
            +
            - doc/index.html
         
     | 
| 
      
 95 
     | 
    
         
            +
            - doc/image3.html
         
     | 
| 
      
 96 
     | 
    
         
            +
            - doc/scripts/stripeTables.js
         
     | 
| 
      
 97 
     | 
    
         
            +
            - doc/scripts/doc.js
         
     | 
| 
       84 
98 
     | 
    
         
             
            - doc/rvg.html
         
     | 
| 
       85 
     | 
    
         
            -
            - doc/ 
     | 
| 
       86 
     | 
    
         
            -
            - doc/ 
     | 
| 
      
 99 
     | 
    
         
            +
            - doc/rvgimage.html
         
     | 
| 
      
 100 
     | 
    
         
            +
            - doc/info.html
         
     | 
| 
      
 101 
     | 
    
         
            +
            - doc/imageattrs.html
         
     | 
| 
      
 102 
     | 
    
         
            +
            - doc/rvgtext.html
         
     | 
| 
      
 103 
     | 
    
         
            +
            - doc/optequiv.html
         
     | 
| 
      
 104 
     | 
    
         
            +
            - doc/comtasks.html
         
     | 
| 
      
 105 
     | 
    
         
            +
            - doc/image1.html
         
     | 
| 
      
 106 
     | 
    
         
            +
            - doc/magick.html
         
     | 
| 
      
 107 
     | 
    
         
            +
            - doc/rvgxform.html
         
     | 
| 
      
 108 
     | 
    
         
            +
            - doc/css/popup.css
         
     | 
| 
       87 
109 
     | 
    
         
             
            - doc/css/doc.css
         
     | 
| 
       88 
110 
     | 
    
         
             
            - doc/css/ref.css
         
     | 
| 
       89 
     | 
    
         
            -
            - doc/css/popup.css
         
     | 
| 
       90 
     | 
    
         
            -
            - doc/constants.html
         
     | 
| 
       91 
     | 
    
         
            -
            - doc/rvgpattern.html
         
     | 
| 
       92 
111 
     | 
    
         
             
            - doc/image2.html
         
     | 
| 
       93 
     | 
    
         
            -
            - doc/rvgtext.html
         
     | 
| 
       94 
     | 
    
         
            -
            - doc/rvgshape.html
         
     | 
| 
       95 
112 
     | 
    
         
             
            - doc/imusage.html
         
     | 
| 
       96 
     | 
    
         
            -
            - doc/ 
     | 
| 
       97 
     | 
    
         
            -
            - doc/info.html
         
     | 
| 
       98 
     | 
    
         
            -
            - doc/rvgimage.html
         
     | 
| 
       99 
     | 
    
         
            -
            - doc/index.html
         
     | 
| 
       100 
     | 
    
         
            -
            - doc/image3.html
         
     | 
| 
       101 
     | 
    
         
            -
            - doc/rvgclip.html
         
     | 
| 
       102 
     | 
    
         
            -
            - doc/rvggroup.html
         
     | 
| 
       103 
     | 
    
         
            -
            - doc/image1.html
         
     | 
| 
       104 
     | 
    
         
            -
            - doc/optequiv.html
         
     | 
| 
       105 
     | 
    
         
            -
            - doc/rvgtut.html
         
     | 
| 
       106 
     | 
    
         
            -
            - doc/ex/path.rb
         
     | 
| 
       107 
     | 
    
         
            -
            - doc/ex/cbezier5.rb
         
     | 
| 
       108 
     | 
    
         
            -
            - doc/ex/texture_floodfill.rb
         
     | 
| 
       109 
     | 
    
         
            -
            - doc/ex/transparent.rb
         
     | 
| 
       110 
     | 
    
         
            -
            - doc/ex/composite.rb
         
     | 
| 
       111 
     | 
    
         
            -
            - doc/ex/InitialCoords.rb
         
     | 
| 
       112 
     | 
    
         
            -
            - doc/ex/Use01.rb
         
     | 
| 
       113 
     | 
    
         
            -
            - doc/ex/tref01.rb
         
     | 
| 
       114 
     | 
    
         
            -
            - doc/ex/baseline_shift01.rb
         
     | 
| 
       115 
     | 
    
         
            -
            - doc/ex/texture_fill_to_border.rb
         
     | 
| 
       116 
     | 
    
         
            -
            - doc/ex/stegano.rb
         
     | 
| 
       117 
     | 
    
         
            -
            - doc/ex/roundrect.rb
         
     | 
| 
       118 
     | 
    
         
            -
            - doc/ex/wet_floor.rb
         
     | 
| 
       119 
     | 
    
         
            -
            - doc/ex/sparse_color.rb
         
     | 
| 
       120 
     | 
    
         
            -
            - doc/ex/Use02.rb
         
     | 
| 
       121 
     | 
    
         
            -
            - doc/ex/nonzero.rb
         
     | 
| 
       122 
     | 
    
         
            -
            - doc/ex/watermark.rb
         
     | 
| 
       123 
     | 
    
         
            -
            - doc/ex/rectangle.rb
         
     | 
| 
       124 
     | 
    
         
            -
            - doc/ex/text_styles.rb
         
     | 
| 
       125 
     | 
    
         
            -
            - doc/ex/to_blob.rb
         
     | 
| 
       126 
     | 
    
         
            -
            - doc/ex/opacity.rb
         
     | 
| 
       127 
     | 
    
         
            -
            - doc/ex/shear.rb
         
     | 
| 
       128 
     | 
    
         
            -
            - doc/ex/transverse.rb
         
     | 
| 
       129 
     | 
    
         
            -
            - doc/ex/text_undercolor.rb
         
     | 
| 
       130 
     | 
    
         
            -
            - doc/ex/segment.rb
         
     | 
| 
       131 
     | 
    
         
            -
            - doc/ex/OrigCoordSys.rb
         
     | 
| 
       132 
     | 
    
         
            -
            - doc/ex/cubic02.rb
         
     | 
| 
       133 
     | 
    
         
            -
            - doc/ex/tspan02.rb
         
     | 
| 
       134 
     | 
    
         
            -
            - doc/ex/implode.rb
         
     | 
| 
       135 
     | 
    
         
            -
            - doc/ex/morph.rb
         
     | 
| 
       136 
     | 
    
         
            -
            - doc/ex/flatten_images.rb
         
     | 
| 
       137 
     | 
    
         
            -
            - doc/ex/tspan01.rb
         
     | 
| 
       138 
     | 
    
         
            -
            - doc/ex/enhance.rb
         
     | 
| 
       139 
     | 
    
         
            -
            - doc/ex/colors.rb
         
     | 
| 
       140 
     | 
    
         
            -
            - doc/ex/translate.rb
         
     | 
| 
       141 
     | 
    
         
            -
            - doc/ex/quantize-m.rb
         
     | 
| 
       142 
     | 
    
         
            -
            - doc/ex/crop.rb
         
     | 
| 
       143 
     | 
    
         
            -
            - doc/ex/text01.rb
         
     | 
| 
       144 
     | 
    
         
            -
            - doc/ex/composite_layers.rb
         
     | 
| 
       145 
     | 
    
         
            -
            - doc/ex/level_colors.rb
         
     | 
| 
       146 
     | 
    
         
            -
            - doc/ex/polyline.rb
         
     | 
| 
       147 
     | 
    
         
            -
            - doc/ex/get_pixels.rb
         
     | 
| 
       148 
     | 
    
         
            -
            - doc/ex/equalize.rb
         
     | 
| 
       149 
     | 
    
         
            -
            - doc/ex/rvg_opacity.rb
         
     | 
| 
       150 
     | 
    
         
            -
            - doc/ex/rect02.rb
         
     | 
| 
       151 
     | 
    
         
            -
            - doc/ex/roll.rb
         
     | 
| 
       152 
     | 
    
         
            -
            - doc/ex/drawcomp.rb
         
     | 
| 
       153 
     | 
    
         
            -
            - doc/ex/RotateScale.rb
         
     | 
| 
       154 
     | 
    
         
            -
            - doc/ex/text_align.rb
         
     | 
| 
       155 
     | 
    
         
            -
            - doc/ex/charcoal.rb
         
     | 
| 
       156 
     | 
    
         
            -
            - doc/ex/writing_mode02.rb
         
     | 
| 
       157 
     | 
    
         
            -
            - doc/ex/polyline01.rb
         
     | 
| 
       158 
     | 
    
         
            -
            - doc/ex/spread.rb
         
     | 
| 
       159 
     | 
    
         
            -
            - doc/ex/PreserveAspectRatio.rb
         
     | 
| 
      
 113 
     | 
    
         
            +
            - doc/struct.html
         
     | 
| 
       160 
114 
     | 
    
         
             
            - doc/ex/resize_to_fit.rb
         
     | 
| 
       161 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
      
 115 
     | 
    
         
            +
            - doc/ex/tref01.rb
         
     | 
| 
      
 116 
     | 
    
         
            +
            - doc/ex/stroke_width.rb
         
     | 
| 
       162 
117 
     | 
    
         
             
            - doc/ex/shade.rb
         
     | 
| 
       163 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       164 
     | 
    
         
            -
            - doc/ex/color_floodfill.rb
         
     | 
| 
       165 
     | 
    
         
            -
            - doc/ex/normalize.rb
         
     | 
| 
       166 
     | 
    
         
            -
            - doc/ex/splice.rb
         
     | 
| 
       167 
     | 
    
         
            -
            - doc/ex/colorize.rb
         
     | 
| 
       168 
     | 
    
         
            -
            - doc/ex/axes.rb
         
     | 
| 
       169 
     | 
    
         
            -
            - doc/ex/vignette.rb
         
     | 
| 
       170 
     | 
    
         
            -
            - doc/ex/ellipse01.rb
         
     | 
| 
       171 
     | 
    
         
            -
            - doc/ex/solarize.rb
         
     | 
| 
       172 
     | 
    
         
            -
            - doc/ex/rect01.rb
         
     | 
| 
       173 
     | 
    
         
            -
            - doc/ex/line.rb
         
     | 
| 
       174 
     | 
    
         
            -
            - doc/ex/writing_mode01.rb
         
     | 
| 
       175 
     | 
    
         
            -
            - doc/ex/mono.rb
         
     | 
| 
       176 
     | 
    
         
            -
            - doc/ex/mosaic.rb
         
     | 
| 
       177 
     | 
    
         
            -
            - doc/ex/level.rb
         
     | 
| 
       178 
     | 
    
         
            -
            - doc/ex/color_fill_to_border.rb
         
     | 
| 
       179 
     | 
    
         
            -
            - doc/ex/wave.rb
         
     | 
| 
       180 
     | 
    
         
            -
            - doc/ex/shave.rb
         
     | 
| 
       181 
     | 
    
         
            -
            - doc/ex/composite_tiled.rb
         
     | 
| 
       182 
     | 
    
         
            -
            - doc/ex/pattern2.rb
         
     | 
| 
       183 
     | 
    
         
            -
            - doc/ex/remap_images.rb
         
     | 
| 
       184 
     | 
    
         
            -
            - doc/ex/bounding_box.rb
         
     | 
| 
       185 
     | 
    
         
            -
            - doc/ex/rvg_clippath.rb
         
     | 
| 
       186 
     | 
    
         
            -
            - doc/ex/remap.rb
         
     | 
| 
       187 
     | 
    
         
            -
            - doc/ex/median_filter.rb
         
     | 
| 
       188 
     | 
    
         
            -
            - doc/ex/arcs01.rb
         
     | 
| 
       189 
     | 
    
         
            -
            - doc/ex/stroke_dasharray.rb
         
     | 
| 
       190 
     | 
    
         
            -
            - doc/ex/trim.rb
         
     | 
| 
       191 
     | 
    
         
            -
            - doc/ex/blur_image.rb
         
     | 
| 
       192 
     | 
    
         
            -
            - doc/ex/Use03.rb
         
     | 
| 
       193 
     | 
    
         
            -
            - doc/ex/text_antialias.rb
         
     | 
| 
       194 
     | 
    
         
            -
            - doc/ex/sepiatone.rb
         
     | 
| 
       195 
     | 
    
         
            -
            - doc/ex/negate.rb
         
     | 
| 
       196 
     | 
    
         
            -
            - doc/ex/channel.rb
         
     | 
| 
       197 
     | 
    
         
            -
            - doc/ex/negate_channel.rb
         
     | 
| 
       198 
     | 
    
         
            -
            - doc/ex/drop_shadow.rb
         
     | 
| 
       199 
     | 
    
         
            -
            - doc/ex/reduce_noise.rb
         
     | 
| 
       200 
     | 
    
         
            -
            - doc/ex/emboss.rb
         
     | 
| 
      
 118 
     | 
    
         
            +
            - doc/ex/rvg_linecap.rb
         
     | 
| 
       201 
119 
     | 
    
         
             
            - doc/ex/unsharp_mask.rb
         
     | 
| 
       202 
     | 
    
         
            -
            - doc/ex/contrast.rb
         
     | 
| 
       203 
     | 
    
         
            -
            - doc/ex/triangle01.rb
         
     | 
| 
       204 
     | 
    
         
            -
            - doc/ex/texturefill.rb
         
     | 
| 
       205 
120 
     | 
    
         
             
            - doc/ex/image.rb
         
     | 
| 
       206 
     | 
    
         
            -
            - doc/ex/radial_blur.rb
         
     | 
| 
       207 
     | 
    
         
            -
            - doc/ex/rotate.rb
         
     | 
| 
       208 
     | 
    
         
            -
            - doc/ex/polaroid.rb
         
     | 
| 
       209 
     | 
    
         
            -
            - doc/ex/smile.rb
         
     | 
| 
       210 
     | 
    
         
            -
            - doc/ex/fonts.rb
         
     | 
| 
       211 
     | 
    
         
            -
            - doc/ex/stroke_fill.rb
         
     | 
| 
       212 
     | 
    
         
            -
            - doc/ex/adaptive_threshold.rb
         
     | 
| 
       213 
     | 
    
         
            -
            - doc/ex/quad01.rb
         
     | 
| 
       214 
     | 
    
         
            -
            - doc/ex/affine.rb
         
     | 
| 
       215 
121 
     | 
    
         
             
            - doc/ex/frame.rb
         
     | 
| 
       216 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
      
 122 
     | 
    
         
            +
            - doc/ex/stroke_dasharray.rb
         
     | 
| 
      
 123 
     | 
    
         
            +
            - doc/ex/circle01.rb
         
     | 
| 
      
 124 
     | 
    
         
            +
            - doc/ex/drawcomp.rb
         
     | 
| 
       217 
125 
     | 
    
         
             
            - doc/ex/transpose.rb
         
     | 
| 
       218 
     | 
    
         
            -
            - doc/ex/rvg_linejoin.rb
         
     | 
| 
       219 
     | 
    
         
            -
            - doc/ex/arcpath.rb
         
     | 
| 
       220 
     | 
    
         
            -
            - doc/ex/color_histogram.rb
         
     | 
| 
       221 
     | 
    
         
            -
            - doc/ex/bilevel_channel.rb
         
     | 
| 
       222 
     | 
    
         
            -
            - doc/ex/chop.rb
         
     | 
| 
       223 
     | 
    
         
            -
            - doc/ex/cubic01.rb
         
     | 
| 
       224 
     | 
    
         
            -
            - doc/ex/cbezier1.rb
         
     | 
| 
       225 
     | 
    
         
            -
            - doc/ex/skewx.rb
         
     | 
| 
       226 
     | 
    
         
            -
            - doc/ex/skewy.rb
         
     | 
| 
       227 
     | 
    
         
            -
            - doc/ex/tspan03.rb
         
     | 
| 
       228 
     | 
    
         
            -
            - doc/ex/oil_paint.rb
         
     | 
| 
       229 
     | 
    
         
            -
            - doc/ex/cbezier2.rb
         
     | 
| 
       230 
     | 
    
         
            -
            - doc/ex/group.rb
         
     | 
| 
       231 
     | 
    
         
            -
            - doc/ex/hatchfill.rb
         
     | 
| 
       232 
     | 
    
         
            -
            - doc/ex/dissolve.rb
         
     | 
| 
       233 
     | 
    
         
            -
            - doc/ex/ordered_dither.rb
         
     | 
| 
       234 
     | 
    
         
            -
            - doc/ex/gaussian_blur.rb
         
     | 
| 
       235 
     | 
    
         
            -
            - doc/ex/coalesce.rb
         
     | 
| 
       236 
     | 
    
         
            -
            - doc/ex/flip.rb
         
     | 
| 
       237 
     | 
    
         
            -
            - doc/ex/font_styles.rb
         
     | 
| 
       238 
     | 
    
         
            -
            - doc/ex/threshold.rb
         
     | 
| 
       239 
126 
     | 
    
         
             
            - doc/ex/pattern1.rb
         
     | 
| 
       240 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       241 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       242 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       243 
     | 
    
         
            -
            - doc/ex/shadow.rb
         
     | 
| 
       244 
     | 
    
         
            -
            - doc/ex/arcs02.rb
         
     | 
| 
       245 
     | 
    
         
            -
            - doc/ex/affine_transform.rb
         
     | 
| 
       246 
     | 
    
         
            -
            - doc/ex/cbezier4.rb
         
     | 
| 
       247 
     | 
    
         
            -
            - doc/ex/flop.rb
         
     | 
| 
       248 
     | 
    
         
            -
            - doc/ex/average.rb
         
     | 
| 
       249 
     | 
    
         
            -
            - doc/ex/matte_floodfill.rb
         
     | 
| 
       250 
     | 
    
         
            -
            - doc/ex/stroke_linejoin.rb
         
     | 
| 
       251 
     | 
    
         
            -
            - doc/ex/cbezier6.rb
         
     | 
| 
       252 
     | 
    
         
            -
            - doc/ex/circle.rb
         
     | 
| 
       253 
     | 
    
         
            -
            - doc/ex/modulate.rb
         
     | 
| 
       254 
     | 
    
         
            -
            - doc/ex/edge.rb
         
     | 
| 
       255 
     | 
    
         
            -
            - doc/ex/get_multiline_type_metrics.rb
         
     | 
| 
       256 
     | 
    
         
            -
            - doc/ex/NewCoordSys.rb
         
     | 
| 
       257 
     | 
    
         
            -
            - doc/ex/matte_replace.rb
         
     | 
| 
       258 
     | 
    
         
            -
            - doc/ex/polygon01.rb
         
     | 
| 
       259 
     | 
    
         
            -
            - doc/ex/stroke_width.rb
         
     | 
| 
      
 127 
     | 
    
         
            +
            - doc/ex/polyline.rb
         
     | 
| 
      
 128 
     | 
    
         
            +
            - doc/ex/contrast.rb
         
     | 
| 
      
 129 
     | 
    
         
            +
            - doc/ex/tspan01.rb
         
     | 
| 
       260 
130 
     | 
    
         
             
            - doc/ex/cycle_colormap.rb
         
     | 
| 
       261 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       262 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       263 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       264 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       265 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       266 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       267 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       268 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       269 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       270 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       271 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       272 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       273 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       274 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       275 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       276 
     | 
    
         
            -
            - doc/ex/images/duck8.gif
         
     | 
| 
       277 
     | 
    
         
            -
            - doc/ex/images/Button_J.gif
         
     | 
| 
       278 
     | 
    
         
            -
            - doc/ex/images/Button_6.gif
         
     | 
| 
       279 
     | 
    
         
            -
            - doc/ex/images/Button_F.gif
         
     | 
| 
       280 
     | 
    
         
            -
            - doc/ex/images/Button_D.gif
         
     | 
| 
       281 
     | 
    
         
            -
            - doc/ex/images/Button_Y.gif
         
     | 
| 
       282 
     | 
    
         
            -
            - doc/ex/images/Button_Q.gif
         
     | 
| 
       283 
     | 
    
         
            -
            - doc/ex/images/Polynesia.jpg
         
     | 
| 
       284 
     | 
    
         
            -
            - doc/ex/images/Button_X.gif
         
     | 
| 
       285 
     | 
    
         
            -
            - doc/ex/images/Button_5.gif
         
     | 
| 
       286 
     | 
    
         
            -
            - doc/ex/images/Yellow_Rose.miff
         
     | 
| 
       287 
     | 
    
         
            -
            - doc/ex/images/model.miff
         
     | 
| 
       288 
     | 
    
         
            -
            - doc/ex/images/Apple.miff
         
     | 
| 
       289 
     | 
    
         
            -
            - doc/ex/images/Hot_Air_Balloons_H.jpg
         
     | 
| 
       290 
     | 
    
         
            -
            - doc/ex/images/Leaf.miff
         
     | 
| 
       291 
     | 
    
         
            -
            - doc/ex/images/Flower_Hat.jpg
         
     | 
| 
       292 
     | 
    
         
            -
            - doc/ex/images/Shorts.jpg
         
     | 
| 
       293 
     | 
    
         
            -
            - doc/ex/images/Button_1.gif
         
     | 
| 
       294 
     | 
    
         
            -
            - doc/ex/images/Button_G.gif
         
     | 
| 
       295 
     | 
    
         
            -
            - doc/ex/images/Button_B.gif
         
     | 
| 
       296 
     | 
    
         
            -
            - doc/ex/images/Ballerina.jpg
         
     | 
| 
      
 131 
     | 
    
         
            +
            - doc/ex/texture_floodfill.rb
         
     | 
| 
      
 132 
     | 
    
         
            +
            - doc/ex/axes.rb
         
     | 
| 
      
 133 
     | 
    
         
            +
            - doc/ex/rvg_opacity.rb
         
     | 
| 
      
 134 
     | 
    
         
            +
            - doc/ex/gradientfill.rb
         
     | 
| 
      
 135 
     | 
    
         
            +
            - doc/ex/cubic02.rb
         
     | 
| 
      
 136 
     | 
    
         
            +
            - doc/ex/OrigCoordSys.rb
         
     | 
| 
      
 137 
     | 
    
         
            +
            - doc/ex/watermark.rb
         
     | 
| 
      
 138 
     | 
    
         
            +
            - doc/ex/enhance.rb
         
     | 
| 
      
 139 
     | 
    
         
            +
            - doc/ex/trim.rb
         
     | 
| 
      
 140 
     | 
    
         
            +
            - doc/ex/adaptive_threshold.rb
         
     | 
| 
      
 141 
     | 
    
         
            +
            - doc/ex/modulate.rb
         
     | 
| 
      
 142 
     | 
    
         
            +
            - doc/ex/cbezier5.rb
         
     | 
| 
      
 143 
     | 
    
         
            +
            - doc/ex/rotate.rb
         
     | 
| 
      
 144 
     | 
    
         
            +
            - doc/ex/nonzero.rb
         
     | 
| 
      
 145 
     | 
    
         
            +
            - doc/ex/rect01.rb
         
     | 
| 
       297 
146 
     | 
    
         
             
            - doc/ex/images/spin.gif
         
     | 
| 
       298 
147 
     | 
    
         
             
            - doc/ex/images/Button_N.gif
         
     | 
| 
       299 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
       300 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
       301 
     | 
    
         
            -
            - doc/ex/images/duck0.gif
         
     | 
| 
       302 
     | 
    
         
            -
            - doc/ex/images/graydient230x6.gif
         
     | 
| 
       303 
     | 
    
         
            -
            - doc/ex/images/Button_E.gif
         
     | 
| 
       304 
     | 
    
         
            -
            - doc/ex/images/Button_0.gif
         
     | 
| 
       305 
     | 
    
         
            -
            - doc/ex/images/Cheetah.jpg
         
     | 
| 
       306 
     | 
    
         
            -
            - doc/ex/images/Button_S.gif
         
     | 
| 
       307 
     | 
    
         
            -
            - doc/ex/images/duck.gif
         
     | 
| 
       308 
     | 
    
         
            -
            - doc/ex/images/Button_A.gif
         
     | 
| 
       309 
     | 
    
         
            -
            - doc/ex/images/Button_H.gif
         
     | 
| 
       310 
     | 
    
         
            -
            - doc/ex/images/duck12.gif
         
     | 
| 
       311 
     | 
    
         
            -
            - doc/ex/images/notimplemented.gif
         
     | 
| 
       312 
     | 
    
         
            -
            - doc/ex/images/Button_Z.gif
         
     | 
| 
       313 
     | 
    
         
            -
            - doc/ex/images/Button_2.gif
         
     | 
| 
       314 
     | 
    
         
            -
            - doc/ex/images/Button_8.gif
         
     | 
| 
       315 
     | 
    
         
            -
            - doc/ex/images/No.wmf
         
     | 
| 
       316 
     | 
    
         
            -
            - doc/ex/images/Button_L.gif
         
     | 
| 
      
 148 
     | 
    
         
            +
            - doc/ex/images/duck14.gif
         
     | 
| 
      
 149 
     | 
    
         
            +
            - doc/ex/images/Button_I.gif
         
     | 
| 
       317 
150 
     | 
    
         
             
            - doc/ex/images/Violin.jpg
         
     | 
| 
       318 
     | 
    
         
            -
            - doc/ex/images/Button_U.gif
         
     | 
| 
       319 
     | 
    
         
            -
            - doc/ex/images/Rocks_On_Beach.miff
         
     | 
| 
       320 
151 
     | 
    
         
             
            - doc/ex/images/Ballerina3.jpg
         
     | 
| 
       321 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
       322 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
      
 152 
     | 
    
         
            +
            - doc/ex/images/Button_Y.gif
         
     | 
| 
      
 153 
     | 
    
         
            +
            - doc/ex/images/Button_W.gif
         
     | 
| 
      
 154 
     | 
    
         
            +
            - doc/ex/images/Apple.miff
         
     | 
| 
      
 155 
     | 
    
         
            +
            - doc/ex/images/duck10.gif
         
     | 
| 
      
 156 
     | 
    
         
            +
            - doc/ex/images/Button_2.gif
         
     | 
| 
       323 
157 
     | 
    
         
             
            - doc/ex/images/Red_Rocks.jpg
         
     | 
| 
      
 158 
     | 
    
         
            +
            - doc/ex/images/Button_3.gif
         
     | 
| 
      
 159 
     | 
    
         
            +
            - doc/ex/images/Button_G.gif
         
     | 
| 
      
 160 
     | 
    
         
            +
            - doc/ex/images/Snake.wmf
         
     | 
| 
      
 161 
     | 
    
         
            +
            - doc/ex/images/Button_6.gif
         
     | 
| 
      
 162 
     | 
    
         
            +
            - doc/ex/images/Button_J.gif
         
     | 
| 
       324 
163 
     | 
    
         
             
            - doc/ex/images/duck11.gif
         
     | 
| 
       325 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
      
 164 
     | 
    
         
            +
            - doc/ex/images/Button_Z.gif
         
     | 
| 
      
 165 
     | 
    
         
            +
            - doc/ex/images/Button_D.gif
         
     | 
| 
      
 166 
     | 
    
         
            +
            - doc/ex/images/Button_B.gif
         
     | 
| 
      
 167 
     | 
    
         
            +
            - doc/ex/images/Shorts.jpg
         
     | 
| 
      
 168 
     | 
    
         
            +
            - doc/ex/images/Button_U.gif
         
     | 
| 
      
 169 
     | 
    
         
            +
            - doc/ex/images/Rocks_On_Beach.miff
         
     | 
| 
       326 
170 
     | 
    
         
             
            - doc/ex/images/Button_9.gif
         
     | 
| 
       327 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
       328 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
      
 171 
     | 
    
         
            +
            - doc/ex/images/Button_M.gif
         
     | 
| 
      
 172 
     | 
    
         
            +
            - doc/ex/images/duck9.gif
         
     | 
| 
      
 173 
     | 
    
         
            +
            - doc/ex/images/notimplemented.gif
         
     | 
| 
      
 174 
     | 
    
         
            +
            - doc/ex/images/duck15.gif
         
     | 
| 
       329 
175 
     | 
    
         
             
            - doc/ex/images/smile.miff
         
     | 
| 
       330 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
       331 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
      
 176 
     | 
    
         
            +
            - doc/ex/images/Button_0.gif
         
     | 
| 
      
 177 
     | 
    
         
            +
            - doc/ex/images/duck13.gif
         
     | 
| 
      
 178 
     | 
    
         
            +
            - doc/ex/images/Button_5.gif
         
     | 
| 
      
 179 
     | 
    
         
            +
            - doc/ex/images/Button_A.gif
         
     | 
| 
      
 180 
     | 
    
         
            +
            - doc/ex/images/Yellow_Rose.miff
         
     | 
| 
       332 
181 
     | 
    
         
             
            - doc/ex/images/duck3.gif
         
     | 
| 
      
 182 
     | 
    
         
            +
            - doc/ex/images/Coffee.wmf
         
     | 
| 
      
 183 
     | 
    
         
            +
            - doc/ex/images/Button_H.gif
         
     | 
| 
      
 184 
     | 
    
         
            +
            - doc/ex/images/Hot_Air_Balloons_H.jpg
         
     | 
| 
       333 
185 
     | 
    
         
             
            - doc/ex/images/Button_7.gif
         
     | 
| 
      
 186 
     | 
    
         
            +
            - doc/ex/images/Button_C.gif
         
     | 
| 
      
 187 
     | 
    
         
            +
            - doc/ex/images/duck8.gif
         
     | 
| 
      
 188 
     | 
    
         
            +
            - doc/ex/images/duck7.gif
         
     | 
| 
      
 189 
     | 
    
         
            +
            - doc/ex/images/Button_T.gif
         
     | 
| 
      
 190 
     | 
    
         
            +
            - doc/ex/images/Button_E.gif
         
     | 
| 
      
 191 
     | 
    
         
            +
            - doc/ex/images/Button_Q.gif
         
     | 
| 
      
 192 
     | 
    
         
            +
            - doc/ex/images/Button_O.gif
         
     | 
| 
      
 193 
     | 
    
         
            +
            - doc/ex/images/Flower_Hat.jpg
         
     | 
| 
      
 194 
     | 
    
         
            +
            - doc/ex/images/Button_8.gif
         
     | 
| 
      
 195 
     | 
    
         
            +
            - doc/ex/images/duck2.gif
         
     | 
| 
      
 196 
     | 
    
         
            +
            - doc/ex/images/Button_1.gif
         
     | 
| 
      
 197 
     | 
    
         
            +
            - doc/ex/images/duck0.gif
         
     | 
| 
      
 198 
     | 
    
         
            +
            - doc/ex/images/Button_X.gif
         
     | 
| 
      
 199 
     | 
    
         
            +
            - doc/ex/images/Button_K.gif
         
     | 
| 
      
 200 
     | 
    
         
            +
            - doc/ex/images/logo400x83.gif
         
     | 
| 
      
 201 
     | 
    
         
            +
            - doc/ex/images/Gold_Statue.jpg
         
     | 
| 
       334 
202 
     | 
    
         
             
            - doc/ex/images/Button_V.gif
         
     | 
| 
      
 203 
     | 
    
         
            +
            - doc/ex/images/graydient230x6.gif
         
     | 
| 
      
 204 
     | 
    
         
            +
            - doc/ex/images/duck12.gif
         
     | 
| 
      
 205 
     | 
    
         
            +
            - doc/ex/images/duck6.gif
         
     | 
| 
      
 206 
     | 
    
         
            +
            - doc/ex/images/duck.gif
         
     | 
| 
      
 207 
     | 
    
         
            +
            - doc/ex/images/Polynesia.jpg
         
     | 
| 
      
 208 
     | 
    
         
            +
            - doc/ex/images/Button_S.gif
         
     | 
| 
      
 209 
     | 
    
         
            +
            - doc/ex/images/Button_F.gif
         
     | 
| 
      
 210 
     | 
    
         
            +
            - doc/ex/images/No.wmf
         
     | 
| 
       335 
211 
     | 
    
         
             
            - doc/ex/images/duck5.gif
         
     | 
| 
       336 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
      
 212 
     | 
    
         
            +
            - doc/ex/images/Cheetah.jpg
         
     | 
| 
       337 
213 
     | 
    
         
             
            - doc/ex/images/Button_4.gif
         
     | 
| 
      
 214 
     | 
    
         
            +
            - doc/ex/images/Ballerina.jpg
         
     | 
| 
       338 
215 
     | 
    
         
             
            - doc/ex/images/duck1.gif
         
     | 
| 
       339 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
       340 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
       341 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
      
 216 
     | 
    
         
            +
            - doc/ex/images/Leaf.miff
         
     | 
| 
      
 217 
     | 
    
         
            +
            - doc/ex/images/Button_P.gif
         
     | 
| 
      
 218 
     | 
    
         
            +
            - doc/ex/images/Button_R.gif
         
     | 
| 
      
 219 
     | 
    
         
            +
            - doc/ex/images/Button_L.gif
         
     | 
| 
       342 
220 
     | 
    
         
             
            - doc/ex/images/Hot_Air_Balloons.jpg
         
     | 
| 
       343 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
      
 221 
     | 
    
         
            +
            - doc/ex/images/model.miff
         
     | 
| 
       344 
222 
     | 
    
         
             
            - doc/ex/images/big-duck.gif
         
     | 
| 
       345 
     | 
    
         
            -
            - doc/ex/images/ 
     | 
| 
       346 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       347 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       348 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       349 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       350 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       351 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       352 
     | 
    
         
            -
            - doc/ex/images/Button_I.gif
         
     | 
| 
       353 
     | 
    
         
            -
            - doc/ex/images/Gold_Statue.jpg
         
     | 
| 
      
 223 
     | 
    
         
            +
            - doc/ex/images/duck4.gif
         
     | 
| 
      
 224 
     | 
    
         
            +
            - doc/ex/pattern2.rb
         
     | 
| 
      
 225 
     | 
    
         
            +
            - doc/ex/texturefill.rb
         
     | 
| 
      
 226 
     | 
    
         
            +
            - doc/ex/cbezier6.rb
         
     | 
| 
      
 227 
     | 
    
         
            +
            - doc/ex/colors.rb
         
     | 
| 
      
 228 
     | 
    
         
            +
            - doc/ex/gravity.rb
         
     | 
| 
      
 229 
     | 
    
         
            +
            - doc/ex/vignette.rb
         
     | 
| 
       354 
230 
     | 
    
         
             
            - doc/ex/arc.rb
         
     | 
| 
       355 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
      
 231 
     | 
    
         
            +
            - doc/ex/composite_layers.rb
         
     | 
| 
      
 232 
     | 
    
         
            +
            - doc/ex/sparse_color.rb
         
     | 
| 
      
 233 
     | 
    
         
            +
            - doc/ex/preview.rb
         
     | 
| 
      
 234 
     | 
    
         
            +
            - doc/ex/negate.rb
         
     | 
| 
      
 235 
     | 
    
         
            +
            - doc/ex/splice.rb
         
     | 
| 
      
 236 
     | 
    
         
            +
            - doc/ex/cbezier3.rb
         
     | 
| 
      
 237 
     | 
    
         
            +
            - doc/ex/dissolve.rb
         
     | 
| 
      
 238 
     | 
    
         
            +
            - doc/ex/composite.rb
         
     | 
| 
      
 239 
     | 
    
         
            +
            - doc/ex/swirl.rb
         
     | 
| 
      
 240 
     | 
    
         
            +
            - doc/ex/rectangle.rb
         
     | 
| 
      
 241 
     | 
    
         
            +
            - doc/ex/writing_mode01.rb
         
     | 
| 
      
 242 
     | 
    
         
            +
            - doc/ex/rvg_linejoin.rb
         
     | 
| 
      
 243 
     | 
    
         
            +
            - doc/ex/polygon01.rb
         
     | 
| 
      
 244 
     | 
    
         
            +
            - doc/ex/rvg_clippath.rb
         
     | 
| 
      
 245 
     | 
    
         
            +
            - doc/ex/coalesce.rb
         
     | 
| 
      
 246 
     | 
    
         
            +
            - doc/ex/color_fill_to_border.rb
         
     | 
| 
      
 247 
     | 
    
         
            +
            - doc/ex/shear.rb
         
     | 
| 
      
 248 
     | 
    
         
            +
            - doc/ex/average.rb
         
     | 
| 
      
 249 
     | 
    
         
            +
            - doc/ex/PreserveAspectRatio.rb
         
     | 
| 
      
 250 
     | 
    
         
            +
            - doc/ex/flip.rb
         
     | 
| 
      
 251 
     | 
    
         
            +
            - doc/ex/quad01.rb
         
     | 
| 
      
 252 
     | 
    
         
            +
            - doc/ex/arcs02.rb
         
     | 
| 
      
 253 
     | 
    
         
            +
            - doc/ex/sketch.rb
         
     | 
| 
      
 254 
     | 
    
         
            +
            - doc/ex/polyline01.rb
         
     | 
| 
      
 255 
     | 
    
         
            +
            - doc/ex/group.rb
         
     | 
| 
      
 256 
     | 
    
         
            +
            - doc/ex/triangle01.rb
         
     | 
| 
      
 257 
     | 
    
         
            +
            - doc/ex/morph.rb
         
     | 
| 
      
 258 
     | 
    
         
            +
            - doc/ex/segment.rb
         
     | 
| 
      
 259 
     | 
    
         
            +
            - doc/ex/rotate_f.rb
         
     | 
| 
       356 
260 
     | 
    
         
             
            - doc/ex/rvg_stroke_dasharray.rb
         
     | 
| 
       357 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       358 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       359 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       360 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       361 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       362 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
      
 261 
     | 
    
         
            +
            - doc/ex/Use03.rb
         
     | 
| 
      
 262 
     | 
    
         
            +
            - doc/ex/cubic01.rb
         
     | 
| 
      
 263 
     | 
    
         
            +
            - doc/ex/hatchfill.rb
         
     | 
| 
      
 264 
     | 
    
         
            +
            - doc/ex/fill_pattern.rb
         
     | 
| 
      
 265 
     | 
    
         
            +
            - doc/ex/motion_blur.rb
         
     | 
| 
      
 266 
     | 
    
         
            +
            - doc/ex/level.rb
         
     | 
| 
      
 267 
     | 
    
         
            +
            - doc/ex/color_reset.rb
         
     | 
| 
      
 268 
     | 
    
         
            +
            - doc/ex/opacity.rb
         
     | 
| 
      
 269 
     | 
    
         
            +
            - doc/ex/channel.rb
         
     | 
| 
      
 270 
     | 
    
         
            +
            - doc/ex/color_floodfill.rb
         
     | 
| 
      
 271 
     | 
    
         
            +
            - doc/ex/gaussian_blur.rb
         
     | 
| 
      
 272 
     | 
    
         
            +
            - doc/ex/clip_path.rb
         
     | 
| 
      
 273 
     | 
    
         
            +
            - doc/ex/cbezier4.rb
         
     | 
| 
      
 274 
     | 
    
         
            +
            - doc/ex/rubyname.rb
         
     | 
| 
      
 275 
     | 
    
         
            +
            - doc/ex/ellipse.rb
         
     | 
| 
      
 276 
     | 
    
         
            +
            - doc/ex/RotateScale.rb
         
     | 
| 
      
 277 
     | 
    
         
            +
            - doc/ex/arcs01.rb
         
     | 
| 
      
 278 
     | 
    
         
            +
            - doc/ex/circle.rb
         
     | 
| 
      
 279 
     | 
    
         
            +
            - doc/ex/ordered_dither.rb
         
     | 
| 
      
 280 
     | 
    
         
            +
            - doc/ex/skewy.rb
         
     | 
| 
      
 281 
     | 
    
         
            +
            - doc/ex/evenodd.rb
         
     | 
| 
      
 282 
     | 
    
         
            +
            - doc/ex/border.rb
         
     | 
| 
      
 283 
     | 
    
         
            +
            - doc/ex/implode.rb
         
     | 
| 
      
 284 
     | 
    
         
            +
            - doc/ex/negate_channel.rb
         
     | 
| 
      
 285 
     | 
    
         
            +
            - doc/ex/roll.rb
         
     | 
| 
       363 
286 
     | 
    
         
             
            - doc/ex/add_noise.rb
         
     | 
| 
      
 287 
     | 
    
         
            +
            - doc/ex/bilevel_channel.rb
         
     | 
| 
      
 288 
     | 
    
         
            +
            - doc/ex/normalize.rb
         
     | 
| 
      
 289 
     | 
    
         
            +
            - doc/ex/tspan03.rb
         
     | 
| 
      
 290 
     | 
    
         
            +
            - doc/ex/path.rb
         
     | 
| 
      
 291 
     | 
    
         
            +
            - doc/ex/quantize-m.rb
         
     | 
| 
      
 292 
     | 
    
         
            +
            - doc/ex/rvg_pattern.rb
         
     | 
| 
       364 
293 
     | 
    
         
             
            - doc/ex/compose_mask.rb
         
     | 
| 
       365 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
      
 294 
     | 
    
         
            +
            - doc/ex/tspan02.rb
         
     | 
| 
      
 295 
     | 
    
         
            +
            - doc/ex/text_antialias.rb
         
     | 
| 
      
 296 
     | 
    
         
            +
            - doc/ex/flatten_images.rb
         
     | 
| 
      
 297 
     | 
    
         
            +
            - doc/ex/polygon.rb
         
     | 
| 
      
 298 
     | 
    
         
            +
            - doc/ex/mono.rb
         
     | 
| 
      
 299 
     | 
    
         
            +
            - doc/ex/texture_fill_to_border.rb
         
     | 
| 
      
 300 
     | 
    
         
            +
            - doc/ex/resize_to_fill.rb
         
     | 
| 
      
 301 
     | 
    
         
            +
            - doc/ex/shave.rb
         
     | 
| 
      
 302 
     | 
    
         
            +
            - doc/ex/blur_image.rb
         
     | 
| 
      
 303 
     | 
    
         
            +
            - doc/ex/get_multiline_type_metrics.rb
         
     | 
| 
      
 304 
     | 
    
         
            +
            - doc/ex/polaroid.rb
         
     | 
| 
      
 305 
     | 
    
         
            +
            - doc/ex/affine.rb
         
     | 
| 
      
 306 
     | 
    
         
            +
            - doc/ex/crop.rb
         
     | 
| 
      
 307 
     | 
    
         
            +
            - doc/ex/shadow.rb
         
     | 
| 
      
 308 
     | 
    
         
            +
            - doc/ex/drop_shadow.rb
         
     | 
| 
      
 309 
     | 
    
         
            +
            - doc/ex/get_type_metrics.rb
         
     | 
| 
      
 310 
     | 
    
         
            +
            - doc/ex/wet_floor.rb
         
     | 
| 
      
 311 
     | 
    
         
            +
            - doc/ex/color_histogram.rb
         
     | 
| 
      
 312 
     | 
    
         
            +
            - doc/ex/remap_images.rb
         
     | 
| 
      
 313 
     | 
    
         
            +
            - doc/ex/median_filter.rb
         
     | 
| 
      
 314 
     | 
    
         
            +
            - doc/ex/nested_rvg.rb
         
     | 
| 
      
 315 
     | 
    
         
            +
            - doc/ex/spread.rb
         
     | 
| 
      
 316 
     | 
    
         
            +
            - doc/ex/ellipse01.rb
         
     | 
| 
      
 317 
     | 
    
         
            +
            - doc/ex/text_undercolor.rb
         
     | 
| 
      
 318 
     | 
    
         
            +
            - doc/ex/stegano.rb
         
     | 
| 
      
 319 
     | 
    
         
            +
            - doc/ex/reduce_noise.rb
         
     | 
| 
      
 320 
     | 
    
         
            +
            - doc/ex/viewex.rb
         
     | 
| 
      
 321 
     | 
    
         
            +
            - doc/ex/translate.rb
         
     | 
| 
      
 322 
     | 
    
         
            +
            - doc/ex/font_styles.rb
         
     | 
| 
      
 323 
     | 
    
         
            +
            - doc/ex/stroke_linecap.rb
         
     | 
| 
      
 324 
     | 
    
         
            +
            - doc/ex/text.rb
         
     | 
| 
       366 
325 
     | 
    
         
             
            - doc/ex/ViewBox.rb
         
     | 
| 
       367 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
      
 326 
     | 
    
         
            +
            - doc/ex/stroke_linejoin.rb
         
     | 
| 
      
 327 
     | 
    
         
            +
            - doc/ex/threshold.rb
         
     | 
| 
      
 328 
     | 
    
         
            +
            - doc/ex/sepiatone.rb
         
     | 
| 
      
 329 
     | 
    
         
            +
            - doc/ex/posterize.rb
         
     | 
| 
      
 330 
     | 
    
         
            +
            - doc/ex/affine_transform.rb
         
     | 
| 
      
 331 
     | 
    
         
            +
            - doc/ex/colorize.rb
         
     | 
| 
      
 332 
     | 
    
         
            +
            - doc/ex/Use02.rb
         
     | 
| 
      
 333 
     | 
    
         
            +
            - doc/ex/crop_with_gravity.rb
         
     | 
| 
      
 334 
     | 
    
         
            +
            - doc/ex/random_threshold_channel.rb
         
     | 
| 
      
 335 
     | 
    
         
            +
            - doc/ex/skewx.rb
         
     | 
| 
      
 336 
     | 
    
         
            +
            - doc/ex/raise.rb
         
     | 
| 
       368 
337 
     | 
    
         
             
            - doc/ex/grav.rb
         
     | 
| 
       369 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       370 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       371 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       372 
     | 
    
         
            -
            - doc/ex/ 
     | 
| 
       373 
     | 
    
         
            -
            - doc/ 
     | 
| 
       374 
     | 
    
         
            -
            - doc/ 
     | 
| 
       375 
     | 
    
         
            -
            - doc/ 
     | 
| 
       376 
     | 
    
         
            -
            - doc/ 
     | 
| 
       377 
     | 
    
         
            -
            - doc/ 
     | 
| 
       378 
     | 
    
         
            -
            - doc/ 
     | 
| 
      
 338 
     | 
    
         
            +
            - doc/ex/text_styles.rb
         
     | 
| 
      
 339 
     | 
    
         
            +
            - doc/ex/level_colors.rb
         
     | 
| 
      
 340 
     | 
    
         
            +
            - doc/ex/qbezierpath.rb
         
     | 
| 
      
 341 
     | 
    
         
            +
            - doc/ex/matte_fill_to_border.rb
         
     | 
| 
      
 342 
     | 
    
         
            +
            - doc/ex/transparent.rb
         
     | 
| 
      
 343 
     | 
    
         
            +
            - doc/ex/transverse.rb
         
     | 
| 
      
 344 
     | 
    
         
            +
            - doc/ex/roundrect.rb
         
     | 
| 
      
 345 
     | 
    
         
            +
            - doc/ex/cbezier1.rb
         
     | 
| 
      
 346 
     | 
    
         
            +
            - doc/ex/rect02.rb
         
     | 
| 
      
 347 
     | 
    
         
            +
            - doc/ex/radial_blur.rb
         
     | 
| 
      
 348 
     | 
    
         
            +
            - doc/ex/emboss.rb
         
     | 
| 
      
 349 
     | 
    
         
            +
            - doc/ex/flop.rb
         
     | 
| 
      
 350 
     | 
    
         
            +
            - doc/ex/Skew.rb
         
     | 
| 
      
 351 
     | 
    
         
            +
            - doc/ex/text_align.rb
         
     | 
| 
      
 352 
     | 
    
         
            +
            - doc/ex/get_pixels.rb
         
     | 
| 
      
 353 
     | 
    
         
            +
            - doc/ex/charcoal.rb
         
     | 
| 
      
 354 
     | 
    
         
            +
            - doc/ex/matte_floodfill.rb
         
     | 
| 
      
 355 
     | 
    
         
            +
            - doc/ex/edge.rb
         
     | 
| 
      
 356 
     | 
    
         
            +
            - doc/ex/fonts.rb
         
     | 
| 
      
 357 
     | 
    
         
            +
            - doc/ex/remap.rb
         
     | 
| 
      
 358 
     | 
    
         
            +
            - doc/ex/mosaic.rb
         
     | 
| 
      
 359 
     | 
    
         
            +
            - doc/ex/writing_mode02.rb
         
     | 
| 
      
 360 
     | 
    
         
            +
            - doc/ex/to_blob.rb
         
     | 
| 
      
 361 
     | 
    
         
            +
            - doc/ex/solarize.rb
         
     | 
| 
      
 362 
     | 
    
         
            +
            - doc/ex/Use01.rb
         
     | 
| 
      
 363 
     | 
    
         
            +
            - doc/ex/oil_paint.rb
         
     | 
| 
      
 364 
     | 
    
         
            +
            - doc/ex/mask.rb
         
     | 
| 
      
 365 
     | 
    
         
            +
            - doc/ex/cbezier2.rb
         
     | 
| 
      
 366 
     | 
    
         
            +
            - doc/ex/equalize.rb
         
     | 
| 
      
 367 
     | 
    
         
            +
            - doc/ex/chop.rb
         
     | 
| 
      
 368 
     | 
    
         
            +
            - doc/ex/InitialCoords.rb
         
     | 
| 
      
 369 
     | 
    
         
            +
            - doc/ex/matte_replace.rb
         
     | 
| 
      
 370 
     | 
    
         
            +
            - doc/ex/smile.rb
         
     | 
| 
      
 371 
     | 
    
         
            +
            - doc/ex/arcpath.rb
         
     | 
| 
      
 372 
     | 
    
         
            +
            - doc/ex/line01.rb
         
     | 
| 
      
 373 
     | 
    
         
            +
            - doc/ex/line.rb
         
     | 
| 
      
 374 
     | 
    
         
            +
            - doc/ex/text01.rb
         
     | 
| 
      
 375 
     | 
    
         
            +
            - doc/ex/NewCoordSys.rb
         
     | 
| 
      
 376 
     | 
    
         
            +
            - doc/ex/composite_tiled.rb
         
     | 
| 
      
 377 
     | 
    
         
            +
            - doc/ex/stroke_fill.rb
         
     | 
| 
      
 378 
     | 
    
         
            +
            - doc/ex/wave.rb
         
     | 
| 
      
 379 
     | 
    
         
            +
            - doc/ex/bounding_box.rb
         
     | 
| 
      
 380 
     | 
    
         
            +
            - doc/ex/baseline_shift01.rb
         
     | 
| 
      
 381 
     | 
    
         
            +
            - build_tarball.rake
         
     | 
| 
       379 
382 
     | 
    
         
             
            has_rdoc: true
         
     | 
| 
       380 
383 
     | 
    
         
             
            homepage: http://rubyforge.org/projects/rmagick
         
     | 
| 
       381 
384 
     | 
    
         
             
            licenses: []
         
     | 
| 
         @@ -399,7 +402,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       399 
402 
     | 
    
         
             
                  version: "0"
         
     | 
| 
       400 
403 
     | 
    
         
             
              version: 
         
     | 
| 
       401 
404 
     | 
    
         
             
            requirements: 
         
     | 
| 
       402 
     | 
    
         
            -
            - ImageMagick 6. 
     | 
| 
      
 405 
     | 
    
         
            +
            - ImageMagick 6.4.9 or later
         
     | 
| 
       403 
406 
     | 
    
         
             
            rubyforge_project: rmagick
         
     | 
| 
       404 
407 
     | 
    
         
             
            rubygems_version: 1.3.5
         
     | 
| 
       405 
408 
     | 
    
         
             
            signing_key: 
         
     |