rmagick 2.2.2 → 2.3.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rmagick might be problematic. Click here for more details.

Files changed (55) hide show
  1. data/ChangeLog +17 -0
  2. data/README.html +21 -46
  3. data/README.txt +18 -40
  4. data/build_tarball.rake +11 -2
  5. data/doc/comtasks.html +5 -5
  6. data/doc/constants.html +272 -241
  7. data/doc/draw.html +5 -5
  8. data/doc/ex/mask.rb +2 -2
  9. data/doc/ilist.html +9 -9
  10. data/doc/image1.html +164 -16
  11. data/doc/image2.html +105 -8
  12. data/doc/image3.html +8 -8
  13. data/doc/imageattrs.html +4 -137
  14. data/doc/imusage.html +3 -3
  15. data/doc/index.html +9 -9
  16. data/doc/info.html +5 -5
  17. data/doc/magick.html +30 -70
  18. data/doc/optequiv.html +19 -39
  19. data/doc/rvg.html +5 -5
  20. data/doc/rvgclip.html +2 -2
  21. data/doc/rvggroup.html +2 -2
  22. data/doc/rvgimage.html +3 -3
  23. data/doc/rvgpattern.html +3 -3
  24. data/doc/rvgshape.html +2 -2
  25. data/doc/rvgstyle.html +2 -2
  26. data/doc/rvgtext.html +6 -6
  27. data/doc/rvgtspan.html +4 -4
  28. data/doc/rvgtut.html +9 -9
  29. data/doc/rvguse.html +3 -3
  30. data/doc/rvgxform.html +2 -2
  31. data/doc/struct.html +54 -19
  32. data/doc/usage.html +11 -3
  33. data/ext/RMagick/MANIFEST +1 -1
  34. data/ext/RMagick/extconf.rb +8 -23
  35. data/ext/RMagick/rmagick.h +10 -5
  36. data/ext/RMagick/rmdraw.c +7 -8
  37. data/ext/RMagick/rmimage.c +186 -20
  38. data/ext/RMagick/rmmain.c +32 -12
  39. data/ext/RMagick/rmutil.c +171 -28
  40. data/lib/RMagick.rb +7 -7
  41. data/lib/rvg/clippath.rb +2 -2
  42. data/lib/rvg/container.rb +2 -2
  43. data/lib/rvg/describable.rb +2 -2
  44. data/lib/rvg/embellishable.rb +2 -2
  45. data/lib/rvg/misc.rb +2 -2
  46. data/lib/rvg/paint.rb +7 -2
  47. data/lib/rvg/pathdata.rb +2 -2
  48. data/lib/rvg/rvg.rb +3 -3
  49. data/lib/rvg/stretchable.rb +15 -3
  50. data/lib/rvg/stylable.rb +2 -2
  51. data/lib/rvg/text.rb +2 -2
  52. data/lib/rvg/transformable.rb +2 -2
  53. data/lib/rvg/units.rb +2 -2
  54. data/rmagick.gemspec +1 -1
  55. metadata +3 -3
data/doc/optequiv.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.2.2: Magick Command Options and Their Equivalent
9
+ <title>RMagick 2.3.0: Magick Command Options and Their Equivalent
10
10
  Methods</title>
11
11
  <meta http-equiv="Content-Type" content=
12
12
  "text/html; charset=us-ascii" />
@@ -70,7 +70,7 @@ td {
70
70
  </head>
71
71
 
72
72
  <body>
73
- <h6 id="header">RMagick 2.2.2 User's Guide and Reference</h6>
73
+ <h6 id="header">RMagick 2.3.0 User's Guide and Reference</h6>
74
74
 
75
75
  <div class="nav">
76
76
  &laquo; <a href="index.html">Prev</a> | <a href=
@@ -102,7 +102,7 @@ td {
102
102
  <div class="intro">
103
103
  <h3>Introduction</h3>
104
104
 
105
- <p>If you're familar with the ImageMagick command-line tools
105
+ <p>If you're familiar with the ImageMagick command-line tools
106
106
  <code>convert</code>, <code>mogrify</code>,
107
107
  <code>composite</code>, and <code>montage</code> you can use
108
108
  the tables on this page to determine which RMagick methods
@@ -377,7 +377,7 @@ td {
377
377
  <td>-clip-mask</td>
378
378
 
379
379
  <td>Image#<a href=
380
- "imageattrs.html#mask">mask=</a>image</td>
380
+ "imageattrs.html#mask">mask</a>(image)</td>
381
381
  </tr>
382
382
 
383
383
  <tr>
@@ -535,6 +535,13 @@ td {
535
535
  "magick.html#set_log_event_mask">set_log_event_mask</a></td>
536
536
  </tr>
537
537
 
538
+ <tr>
539
+ <td>-decipher</td>
540
+
541
+ <td>Image#<a href=
542
+ "image1.html#decipher">decipher</a>(<em>passphrase</em>)</td>
543
+ </tr>
544
+
538
545
  <tr>
539
546
  <td>-deconstruct</td>
540
547
 
@@ -672,6 +679,13 @@ td {
672
679
  <em>sigma</em>=1.0)</td>
673
680
  </tr>
674
681
 
682
+ <tr>
683
+ <td>-encipher</td>
684
+
685
+ <td>Image#<a href=
686
+ "image2.html#encipher">encipher</a>(<em>passphrase</em>)</td>
687
+ </tr>
688
+
675
689
  <tr>
676
690
  <td>-encoding <em>type</em></td>
677
691
 
@@ -731,17 +745,6 @@ td {
731
745
  <em>x</em>+<em>y</em>"</td>
732
746
  </tr>
733
747
 
734
- <tr>
735
- <td>-family <em>name</em></td>
736
-
737
- <td>Draw#<a href=
738
- "draw.html#family">family</a>(<em>name</em>) (for
739
- drawing)<br />
740
- Draw#<a href=
741
- "draw.html#font_family_eq">family=</a><em>name</em> (for
742
- annotation)</td>
743
- </tr>
744
-
745
748
  <tr>
746
749
  <td>-fill <em>color</em></td>
747
750
 
@@ -1078,17 +1081,7 @@ td {
1078
1081
  <td>-mask filename</td>
1079
1082
 
1080
1083
  <td>Image#<a href=
1081
- "imageattrs.html#mask">mask=</a><em>mask</em></td>
1082
- </tr>
1083
-
1084
- <tr>
1085
- <td>-matte<br />
1086
- +matte</td>
1087
-
1088
- <td>Image#<a href=
1089
- "imageattrs.html#matte">matte=</a><code>true</code><br />
1090
- Image#<a href=
1091
- "imageattrs.html#matte">matte=</a><code>false</code></td>
1084
+ "imageattrs.html#mask">mask</a>(image)</td>
1092
1085
  </tr>
1093
1086
 
1094
1087
  <tr>
@@ -1687,19 +1680,6 @@ td {
1687
1680
  "image2.html#export_pixels_to_str">export_pixels_to_str</a></td>
1688
1681
  </tr>
1689
1682
 
1690
- <tr>
1691
- <td>-stretch <em>type</em></td>
1692
-
1693
- <td>Draw#<a href=
1694
- "draw.html#font_stretch">font_stretch</a>(<em><a href=
1695
- "constants.html#StretchType">type</a></em>) (for
1696
- drawing)<br />
1697
- Draw#<a href=
1698
- "draw.html#font_stretch_eq">font_stretch=</a><em><a href=
1699
- "constants.html#StretchType">type</a></em> (for
1700
- annotation)</td>
1701
- </tr>
1702
-
1703
1683
  <tr>
1704
1684
  <td>-strip</td>
1705
1685
 
data/doc/rvg.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.2.2: RVG Reference: RVG Class</title>
9
+ <title>RMagick 2.3.0: RVG Reference: RVG Class</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -27,7 +27,7 @@
27
27
  </head>
28
28
 
29
29
  <body>
30
- <h6 id="header">RMagick 2.2.2 User's Guide and Reference</h6>
30
+ <h6 id="header">RMagick 2.3.0 User's Guide and Reference</h6>
31
31
 
32
32
  <div class="nav">
33
33
  &laquo;&nbsp;<a href="rvgtut.html">Prev</a> | <a href=
@@ -307,7 +307,7 @@ canvas.background_image = Magick::Image.read('myBackground.gif').first
307
307
  canvas.background_pattern = Magick::GradientFill.new(0, 0, 0, 100, "#900", "#000")
308
308
  </pre>
309
309
 
310
- <h4>Returns</h4><span class="arg">aFill</span>
310
+ <h4>Returns</h4><p>a Fill object</p>
311
311
  </div>
312
312
 
313
313
  <div class="sig">
@@ -620,7 +620,7 @@ canvas.background_position = :scaled
620
620
  When the value of the <code>meet_or_slice</code> argument
621
621
  is 'meet' or 'slice', this argument controls the placement
622
622
  of the content within the viewport. The <code>align</code>
623
- argument is the concatenation of an <em>x</em>-aligment and
623
+ argument is the concatenation of an <em>x</em>-alignment and
624
624
  a <em>y</em>-alignment. The values are shown in these
625
625
  lists:
626
626
 
@@ -762,7 +762,7 @@ canvas.background_position = :scaled
762
762
 
763
763
  <p><span class="arg">rvg.</span>text(<span class=
764
764
  "arg">x</span>=0, <span class="arg">y</span>=0, <span class=
765
- "arg">text</span>=nil) [{|<span class="arg">aText</span>| ...}]
765
+ "arg">text</span>=nil) [{|<span class="arg">text</span>| ...}]
766
766
  -&gt; <em>text</em></p>
767
767
  </div>
768
768
 
data/doc/rvgclip.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.2.2: RVG Reference: RVG::ClipPath Class</title>
9
+ <title>RMagick 2.3.0: RVG Reference: RVG::ClipPath Class</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -27,7 +27,7 @@
27
27
  </head>
28
28
 
29
29
  <body>
30
- <h6 id="header">RMagick 2.2.2 User's Guide and Reference</h6>
30
+ <h6 id="header">RMagick 2.3.0 User's Guide and Reference</h6>
31
31
 
32
32
  <div class="nav">
33
33
  &laquo;&nbsp;<a href="rvgpattern.html">Prev</a> | <a href=
data/doc/rvggroup.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.2.2: RVG Reference: RVG::Group Class</title>
9
+ <title>RMagick 2.3.0: RVG Reference: RVG::Group Class</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -27,7 +27,7 @@
27
27
  </head>
28
28
 
29
29
  <body>
30
- <h6 id="header">RMagick 2.2.2 User's Guide and Reference</h6>
30
+ <h6 id="header">RMagick 2.3.0 User's Guide and Reference</h6>
31
31
 
32
32
  <div class="nav">
33
33
  &laquo;&nbsp;<a href="rvg.html">Prev</a> | <a href=
data/doc/rvgimage.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.2.2: RVG Reference: RVG::Image Class</title>
9
+ <title>RMagick 2.3.0: RVG Reference: RVG::Image Class</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -27,7 +27,7 @@
27
27
  </head>
28
28
 
29
29
  <body>
30
- <h6 id="header">RMagick 2.2.2 User's Guide and Reference</h6>
30
+ <h6 id="header">RMagick 2.3.0 User's Guide and Reference</h6>
31
31
 
32
32
  <div class="nav">
33
33
  &laquo;&nbsp;<a href="rvggroup.html">Prev</a> | <a href=
@@ -191,7 +191,7 @@
191
191
  When the value of the <code>meet_or_slice</code> argument
192
192
  is 'meet' or 'slice', this argument controls the placement
193
193
  of the image within the viewport. The <code>align</code>
194
- argument is the concatenation of an <em>x</em>-aligment and
194
+ argument is the concatenation of an <em>x</em>-alignment and
195
195
  a <em>y</em>-alignment. The values are shown in these
196
196
  lists:
197
197
 
data/doc/rvgpattern.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.2.2: RVG Reference: RVG::Pattern Class</title>
9
+ <title>RMagick 2.3.0: RVG Reference: RVG::Pattern Class</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -27,7 +27,7 @@
27
27
  </head>
28
28
 
29
29
  <body>
30
- <h6 id="header">RMagick 2.2.2 User's Guide and Reference</h6>
30
+ <h6 id="header">RMagick 2.3.0 User's Guide and Reference</h6>
31
31
 
32
32
  <div class="nav">
33
33
  &laquo;&nbsp;<a href="rvgimage.html">Prev</a> | <a href=
@@ -211,7 +211,7 @@
211
211
  When the value of the <code>meet_or_slice</code> argument
212
212
  is 'meet' or 'slice', this argument controls the placement
213
213
  of the content within the viewport. The <code>align</code>
214
- argument is the concatenation of an <em>x</em>-aligment and
214
+ argument is the concatenation of an <em>x</em>-alignment and
215
215
  a <em>y</em>-alignment. The values are shown in these
216
216
  lists:
217
217
 
data/doc/rvgshape.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.2.2: RVG Reference: Shapes</title>
9
+ <title>RMagick 2.3.0: RVG Reference: Shapes</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -28,7 +28,7 @@
28
28
  </head>
29
29
 
30
30
  <body>
31
- <h6 id="header">RMagick 2.2.2 User's Guide and Reference</h6>
31
+ <h6 id="header">RMagick 2.3.0 User's Guide and Reference</h6>
32
32
 
33
33
  <div class="nav">
34
34
  &laquo;&nbsp;<a href="rvgstyle.html">Prev</a> | <a href=
data/doc/rvgstyle.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.2.2: RVG Reference: Styles</title>
9
+ <title>RMagick 2.3.0: RVG Reference: Styles</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -27,7 +27,7 @@
27
27
  </head>
28
28
 
29
29
  <body>
30
- <h6 id="header">RMagick 2.2.2 User's Guide and Reference</h6>
30
+ <h6 id="header">RMagick 2.3.0 User's Guide and Reference</h6>
31
31
 
32
32
  <div class="nav">
33
33
  &laquo;&nbsp;<a href="rvguse.html">Prev</a> | <a href=
data/doc/rvgtext.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.2.2: RVG Reference: RVG::Text Class</title>
9
+ <title>RMagick 2.3.0: RVG Reference: RVG::Text Class</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -33,7 +33,7 @@
33
33
  </head>
34
34
 
35
35
  <body>
36
- <h6 id="header">RMagick 2.2.2 User's Guide and Reference</h6>
36
+ <h6 id="header">RMagick 2.3.0 User's Guide and Reference</h6>
37
37
 
38
38
  <div class="nav">
39
39
  &laquo;&nbsp;<a href="rvgclip.html">Prev</a> | <a href=
@@ -292,10 +292,10 @@
292
292
  <h4>Description</h4>
293
293
 
294
294
  <p>The basic styles include font styles and text styles. Note
295
- that &times;Magick uses the font styles to select a font from
295
+ that ImageMagick uses the font styles to select a font from
296
296
  the available fonts. If it cannot find a font that exactly
297
297
  matches it will use the closest matching font. Unlike MS
298
- Windows, &times;Magick will <em>not</em> alter a font - by
298
+ Windows, ImageMagick will <em>not</em> alter a font - by
299
299
  artificially slanting it to to simulate italics, for example -
300
300
  to produce a match.</p>
301
301
 
@@ -350,7 +350,7 @@
350
350
  "javascript:popup('font_styles.rb.html')"><img src=
351
351
  "ex/font_styles.gif" title="Click to see the example script"
352
352
  alt="font styles example" /></a><em>Depending on the fonts that
353
- &times;Magick is configured with you may not see the effect of
353
+ ImageMagick is configured with you may not see the effect of
354
354
  some of the styles used in this example.</em></p>
355
355
 
356
356
  <p><strong>text styles</strong><a href=
@@ -372,7 +372,7 @@
372
372
  an invalid value for any of these styles RVG ignores the
373
373
  value and uses the default. RVG frequently uses approximate
374
374
  measurements to emulate these styles so the results will not
375
- be as precise as when &times;Magick is doing the work.</p>
375
+ be as precise as when ImageMagick is doing the work.</p>
376
376
 
377
377
  <h4>Styles</h4>
378
378
 
data/doc/rvgtspan.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.2.2: RVG Reference: RVG::Tspan Class</title>
9
+ <title>RMagick 2.3.0: RVG Reference: RVG::Tspan Class</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -27,7 +27,7 @@
27
27
  </head>
28
28
 
29
29
  <body>
30
- <h6 id="header">RMagick 2.2.2 User's Guide and Reference</h6>
30
+ <h6 id="header">RMagick 2.3.0 User's Guide and Reference</h6>
31
31
 
32
32
  <div class="nav">
33
33
  &laquo;&nbsp;<a href="rvgtext.html">Prev</a> | <a href=
@@ -88,7 +88,7 @@
88
88
 
89
89
  <p>Tspan objects are containers, so this method yields to a
90
90
  block if one is present. The only objects that a tspan can
91
- contain are other tspans. Styles defined on a tspan propogate
91
+ contain are other tspans. Styles defined on a tspan propagate
92
92
  to any tspans contained within it.</p>
93
93
 
94
94
  <h4>Arguments</h4>
@@ -207,7 +207,7 @@
207
207
  <p>Calls <a href="#new">RVG::Tspan.new</a> to construct a tspan
208
208
  and adds it to the tspan. Yields to a block if one is present,
209
209
  passing the new tspan as an argument. Styles defined on the
210
- container tspan propogate to the contained tspan.</p>
210
+ container tspan propagate to the contained tspan.</p>
211
211
 
212
212
  <h4>Arguments</h4>
213
213
 
data/doc/rvgtut.html CHANGED
@@ -3,13 +3,13 @@
3
3
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
4
 
5
5
  <html xmlns="http://www.w3.org/1999/xhtml">
6
- <!-- $Id: rvgtut.html,v 1.12 2008/01/07 00:04:01 rmagick Exp $ -->
6
+ <!-- $Id: rvgtut.html,v 1.14 2008/03/08 00:28:45 rmagick Exp $ -->
7
7
 
8
8
  <head>
9
9
  <meta name="generator" content=
10
10
  "HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org" />
11
11
 
12
- <title>RMagick 2.2.2: RVG Tutorial</title>
12
+ <title>RMagick 2.3.0: RVG Tutorial</title>
13
13
  <meta name="GENERATOR" content="Quanta Plus" />
14
14
  <link rel="stylesheet" type="text/css" href="css/doc.css" />
15
15
  <style type="text/css">
@@ -23,7 +23,7 @@
23
23
  </head>
24
24
 
25
25
  <body>
26
- <h6 id="header">RMagick 2.2.2 User's Guide and Reference</h6>
26
+ <h6 id="header">RMagick 2.3.0 User's Guide and Reference</h6>
27
27
 
28
28
  <div class="nav">
29
29
  &laquo;&nbsp;<a href="constants.html">Prev</a> | <a href=
@@ -44,11 +44,11 @@
44
44
  <div style="position:absolute; left: 200px;top:1em">
45
45
  <h3>Introduction</h3>
46
46
 
47
- <p>RVG is the newest addition to RMagick. RVG (Ruby Vector
48
- Graphics) is a facade for RMagick's <a href=
49
- "draw.html">Draw</a> class that supplies a drawing API based
50
- on the <a href="http://www.w3.org/Graphics/SVG/">Scalable
51
- Vector Graphics</a> W3C recommendation.</p>
47
+ <p>RVG (Ruby Vector Graphics) is a facade for RMagick's
48
+ <a href="draw.html">Draw</a> class that supplies a drawing
49
+ API based on the <a href=
50
+ "http://www.w3.org/Graphics/SVG/">Scalable Vector
51
+ Graphics</a> W3C recommendation.</p>
52
52
 
53
53
  <p>RVG is a <em>scalable</em> <em>vector</em> drawing
54
54
  library. <em>Scalable</em> means that drawings are not fixed
@@ -380,7 +380,7 @@
380
380
 
381
381
  <p>In line 16 I define the <code>stroke</code> and
382
382
  <code>stroke_width</code> styles on the group. Styles defined on
383
- the group propogate to shapes within the group unless you
383
+ the group propagate to shapes within the group unless you
384
384
  override them. To do that, call <code>styles</code> on the
385
385
  shapes. In this group each shape has its own fill color. The
386
386
  yellow circle forms the head. The <code>circle</code> method
data/doc/rvguse.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.2.2: RVG Reference: RVG::Use Class</title>
9
+ <title>RMagick 2.3.0: RVG Reference: RVG::Use Class</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -27,7 +27,7 @@
27
27
  </head>
28
28
 
29
29
  <body>
30
- <h6 id="header">RMagick 2.2.2 User's Guide and Reference</h6>
30
+ <h6 id="header">RMagick 2.3.0 User's Guide and Reference</h6>
31
31
 
32
32
  <div class="nav">
33
33
  &laquo;&nbsp;<a href="rvgtspan.html">Prev</a> | <a href=
@@ -76,7 +76,7 @@
76
76
  "rvgpattern.html#use">RVG::Pattern</a> classes.</p>
77
77
 
78
78
  <p>The use object is similar to a group. Any styles specified
79
- on the use will propogate to the referenced object. However,
79
+ on the use will propagate to the referenced object. However,
80
80
  styles on the referenced object will override the styles
81
81
  specified on the RVG::Use object.</p>
82
82