rmagick 2.9.1 → 2.9.2

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 (60) hide show
  1. data/ChangeLog +13 -1
  2. data/README.html +8 -8
  3. data/doc/comtasks.html +2 -2
  4. data/doc/constants.html +2 -2
  5. data/doc/draw.html +4 -3
  6. data/doc/ilist.html +2 -2
  7. data/doc/image1.html +2 -2
  8. data/doc/image2.html +2 -2
  9. data/doc/image3.html +11 -8
  10. data/doc/imageattrs.html +17 -2
  11. data/doc/imusage.html +2 -2
  12. data/doc/index.html +6 -6
  13. data/doc/info.html +2 -2
  14. data/doc/magick.html +2 -2
  15. data/doc/optequiv.html +47 -9
  16. data/doc/rvg.html +2 -2
  17. data/doc/rvgclip.html +2 -2
  18. data/doc/rvggroup.html +2 -2
  19. data/doc/rvgimage.html +2 -2
  20. data/doc/rvgpattern.html +2 -2
  21. data/doc/rvgshape.html +2 -2
  22. data/doc/rvgstyle.html +2 -2
  23. data/doc/rvgtext.html +2 -2
  24. data/doc/rvgtspan.html +2 -2
  25. data/doc/rvgtut.html +2 -2
  26. data/doc/rvguse.html +2 -2
  27. data/doc/rvgxform.html +2 -2
  28. data/doc/struct.html +2 -2
  29. data/doc/usage.html +2 -2
  30. data/ext/RMagick/MANIFEST +1 -1
  31. data/ext/RMagick/extconf.rb +65 -21
  32. data/ext/RMagick/rmagick.c +2 -2
  33. data/ext/RMagick/rmagick.h +3 -2
  34. data/ext/RMagick/rmdraw.c +119 -4
  35. data/ext/RMagick/rmenum.c +12 -3
  36. data/ext/RMagick/rmfill.c +122 -42
  37. data/ext/RMagick/rmilist.c +2 -2
  38. data/ext/RMagick/rmimage.c +99 -14
  39. data/ext/RMagick/rminfo.c +3 -6
  40. data/ext/RMagick/rmmain.c +18 -4
  41. data/ext/RMagick/rmmontage.c +2 -2
  42. data/ext/RMagick/rmpixel.c +2 -2
  43. data/ext/RMagick/rmstruct.c +20 -12
  44. data/ext/RMagick/rmutil.c +2 -2
  45. data/lib/RMagick.rb +2 -2
  46. data/lib/rvg/clippath.rb +2 -2
  47. data/lib/rvg/container.rb +2 -2
  48. data/lib/rvg/describable.rb +2 -2
  49. data/lib/rvg/embellishable.rb +2 -2
  50. data/lib/rvg/misc.rb +2 -2
  51. data/lib/rvg/paint.rb +2 -2
  52. data/lib/rvg/pathdata.rb +2 -2
  53. data/lib/rvg/rvg.rb +2 -2
  54. data/lib/rvg/stretchable.rb +2 -2
  55. data/lib/rvg/stylable.rb +2 -2
  56. data/lib/rvg/text.rb +2 -2
  57. data/lib/rvg/transformable.rb +2 -2
  58. data/lib/rvg/units.rb +2 -2
  59. data/rmagick.gemspec +1 -1
  60. metadata +2 -2
data/ChangeLog CHANGED
@@ -1,10 +1,22 @@
1
+ RMagick 2.9.2
2
+ o Add new HorizontalTileEdgeVirtualPixelMethod,
3
+ VerticalTileEdgeVirtualPixelMethod, CheckerTileVirtualPixelMethod
4
+ VirtualPixelMethod enum values (available in ImageMagick 6.5.0-1)
5
+ o Added BilinearForwardDistortion, BilinearReverseDistortion enums
6
+ (available in ImageMagick 6.5.1-2)
7
+ o Add missing composite operators to Magick::Draw#composite method
8
+ o Add warning about dropping support for ImageMagick < 6.3.5 and
9
+ Ruby < 1.8.5
10
+ o Fix bug #25892, stack buffer overflow in Magick::TypeMetric.to_s
11
+ (reported by Roman Simecek)
12
+
1
13
  RMagick 2.9.1
2
14
  o Fix a bug that prevents the use of transparent background colors when
3
15
  built with ImageMagick 6.4.9-0
4
16
 
5
17
  RMagick 2.9.0
6
18
  o Fix #23209, improve RVG's letter spacing (patch from Jonah Fox)
7
- o Add Draw#kerning= attribute(available in ImageMagick 6.4.7-8)
19
+ o Add Draw#kerning= attribute (available in ImageMagick 6.4.7-8)
8
20
  o Add Draw#interword_spacing= attribute (available in ImageMagick
9
21
  6.4.8-0)
10
22
  o Add Draw#kerning, Draw#interword_spacing primitive methods (available in
@@ -1,15 +1,15 @@
1
1
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
2
  <html>
3
3
  <head>
4
- <title>RMagick 2.9.1 README</title>
4
+ <title>RMagick 2.9.2 README</title>
5
5
  <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6
6
  <meta name="GENERATOR" content="RedCloth">
7
7
  </head>
8
8
  <body>
9
- <h1>RMagick 2.9.1 <span class="caps">README</span></h1>
9
+ <h1>RMagick 2.9.2 <span class="caps">README</span></h1>
10
10
 
11
11
 
12
- <h2>02/01/09</h2>
12
+ <h2>05/14/09</h2>
13
13
 
14
14
 
15
15
  <h3>Table of Contents</h3>
@@ -75,12 +75,12 @@ depending on which tarball you have:</p>
75
75
 
76
76
 
77
77
  <pre>
78
- tar xvzf RMagick-2.9.1-tar.gz (gzipped tarball)
79
- tar xvjf RMagick-2.9.1-tar.bz2 (bzipped tarball)
78
+ tar xvzf RMagick-2.9.2-tar.gz (gzipped tarball)
79
+ tar xvjf RMagick-2.9.2-tar.bz2 (bzipped tarball)
80
80
  7z e RMagick-x.y.z.tar.lzma -so | tar xv (7zipped tarball)
81
81
  </pre>
82
82
 
83
- <p>Change to the RMagick-2.9.1 directory. If you are not using any
83
+ <p>Change to the RMagick-2.9.2 directory. If you are not using any
84
84
  configuration options (usually you don&#8217;t need to) enter the command</p>
85
85
 
86
86
 
@@ -191,7 +191,7 @@ systems, see the documentation for the dynamic loading facility.</p>
191
191
 
192
192
 
193
193
  <pre>
194
- hook /home/me/src/RMagick-2.9.1/./post-setup.rb failed:
194
+ hook /home/me/src/RMagick-2.9.2/./post-setup.rb failed:
195
195
  No such file or directory - "/tmp/rmagick6872.6"
196
196
  </pre>
197
197
 
@@ -263,7 +263,7 @@ and for hosting the RMagick documentation.</p>
263
263
 
264
264
 
265
265
  <pre>
266
- Copyright � 2002-2008 by Timothy P. Hunter
266
+ Copyright � 2002-2009 by Timothy P. Hunter
267
267
 
268
268
  Permission is hereby granted, free of charge, to any person obtaining a
269
269
  copy of this software and associated documentation files (the "Software"),
@@ -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.9.1: Common Tasks</title>
9
+ <title>RMagick 2.9.2: Common Tasks</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -31,7 +31,7 @@
31
31
  </head>
32
32
 
33
33
  <body>
34
- <h6 id="header">RMagick 2.9.1 User's Guide and Reference</h6>
34
+ <h6 id="header">RMagick 2.9.2 User's Guide and Reference</h6>
35
35
 
36
36
  <div class="nav">
37
37
  &laquo;&nbsp;<a href="optequiv.html">Prev</a> | <a href=
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 6 November 2007), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.9.1: Constants</title>
9
+ <title>RMagick 2.9.2: Constants</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -61,7 +61,7 @@
61
61
  </head>
62
62
 
63
63
  <body>
64
- <h6 id="header">RMagick 2.9.1 User's Guide and Reference</h6>
64
+ <h6 id="header">RMagick 2.9.2 User's Guide and Reference</h6>
65
65
 
66
66
  <div class="nav">
67
67
  &laquo;&nbsp;<a href="info.html">Prev</a> | <a href=
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 6 November 2007), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.9.1: class Draw</title>
9
+ <title>RMagick 2.9.2: class Draw</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -25,7 +25,7 @@
25
25
  </head>
26
26
 
27
27
  <body>
28
- <h6 id="header">RMagick 2.9.1 User's Guide and Reference</h6>
28
+ <h6 id="header">RMagick 2.9.2 User's Guide and Reference</h6>
29
29
 
30
30
  <div class="nav">
31
31
  &laquo;&nbsp;<a href="image3.html">Prev</a> | <a href=
@@ -392,6 +392,7 @@ title.annotate(montage, 0,0,0,40, 'Named Colors') {
392
392
 
393
393
  <tr>
394
394
  <th>Replaced by</th>
395
+ <th>&nbsp;</th>
395
396
  </tr>
396
397
 
397
398
  <tr>
@@ -1828,7 +1829,7 @@ gc.kerning(5)
1828
1829
  <p>This example demonstrates 4 levels of opacity.</p>
1829
1830
 
1830
1831
  <p><a href="javascript:popup('opacity.rb.html')"><img src=
1831
- "ex/opacity.gif" alt="opacity example" title=
1832
+ "ex/opacity.png" alt="opacity example" title=
1832
1833
  "Click to see the example script" /></a></p>
1833
1834
 
1834
1835
  <h4>See also</h4>
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 6 November 2007), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.9.1: class ImageList</title>
9
+ <title>RMagick 2.9.2: class ImageList</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -20,7 +20,7 @@
20
20
  </head>
21
21
 
22
22
  <body>
23
- <h6 id="header">RMagick 2.9.1 User's Guide and Reference</h6>
23
+ <h6 id="header">RMagick 2.9.2 User's Guide and Reference</h6>
24
24
 
25
25
  <div class="nav">
26
26
  &laquo;&nbsp;<a href="magick.html">Prev</a> | <a href=
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 6 November 2007), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.9.1: class Image (class methods and instance
9
+ <title>RMagick 2.9.2: class Image (class methods and instance
10
10
  methods a-d)</title>
11
11
  <meta http-equiv="Content-Type" content=
12
12
  "text/html; charset=us-ascii" />
@@ -48,7 +48,7 @@
48
48
  </head>
49
49
 
50
50
  <body>
51
- <h6 id="header">RMagick 2.9.1 User's Guide and Reference</h6>
51
+ <h6 id="header">RMagick 2.9.2 User's Guide and Reference</h6>
52
52
 
53
53
  <div class="nav">
54
54
  &laquo;&nbsp;<a href="imageattrs.html">Prev</a> | <a href=
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 6 November 2007), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.9.1: class Image (instance methods e-o)</title>
9
+ <title>RMagick 2.9.2: class Image (instance methods e-o)</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -47,7 +47,7 @@
47
47
  </head>
48
48
 
49
49
  <body>
50
- <h6 id="header">RMagick 2.9.1 User's Guide and Reference</h6>
50
+ <h6 id="header">RMagick 2.9.2 User's Guide and Reference</h6>
51
51
 
52
52
  <div class="nav">
53
53
  &laquo;&nbsp;<a href="image1.html">Prev</a> | <a href=
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 6 November 2007), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.9.1: class Image (instance methods p-w)</title>
9
+ <title>RMagick 2.9.2: class Image (instance methods p-w)</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -51,7 +51,7 @@
51
51
  </head>
52
52
 
53
53
  <body>
54
- <h6 id="header">RMagick 2.9.1 User's Guide and Reference</h6>
54
+ <h6 id="header">RMagick 2.9.2 User's Guide and Reference</h6>
55
55
 
56
56
  <div class="nav">
57
57
  &laquo;&nbsp;<a href="image2.html">Prev</a> | <a href=
@@ -899,7 +899,8 @@ Magick::QuantumExpressionOperator.values {|v| puts v}
899
899
  <dt>channel</dt>
900
900
 
901
901
  <dd>A <a href="constants.html#ChannelType">ChannelType</a>
902
- value. The default is to operate on the R, G. and B channels.</dd>
902
+ value. The default is to operate on the R, G. and B
903
+ channels.</dd>
903
904
  </dl>
904
905
 
905
906
  <h4>Returns</h4>
@@ -1470,7 +1471,7 @@ random_threshold_channel(geom, RedChannel)
1470
1471
  "padding-left:62px; padding-right: 62px; padding-top: 87px;padding-bottom:87px;"
1471
1472
  id="after_resize_to_fill" onmouseover=
1472
1473
  "this.style.display='none'; before_resize_to_fill.style.display='';"
1473
- alt="resize_to_fill example" />
1474
+ alt="resize_to_fill example" />
1474
1475
  <!-- This img tag displays the before image when moused over -->
1475
1476
  <img src="ex/images/Flower_Hat.jpg" style="display: none" id=
1476
1477
  "before_resize_to_fill" onmouseout=
@@ -1565,7 +1566,7 @@ random_threshold_channel(geom, RedChannel)
1565
1566
  <img id="rtfless" style="display: none" onmouseout=
1566
1567
  "this.style.display='none';rtf.style.display='';" src=
1567
1568
  "ex/images/Flower_Hat.jpg" alt="resize_to_fit example" title=
1568
- "Click to see the example script" />
1569
+ "Click to see the example script" />
1569
1570
  <!-- This img tag displays the framed image when the mouse is not over-->
1570
1571
  <img style=
1571
1572
  "padding-left:69px; padding-right: 69px; padding-top: 87px;padding-bottom:87px;"
@@ -2461,9 +2462,11 @@ random_threshold_channel(geom, RedChannel)
2461
2462
 
2462
2463
  <dt>midpoint</dt>
2463
2464
 
2464
- <dd class="imquote">indicates where midtones fall in the
2465
- resultant image (0 is white; 50% is middle-gray; 100% is
2466
- black)</dd>
2465
+ <dd><span class="imquote">indicates where midtones fall in
2466
+ the resultant image (0 is white; 50% is middle-gray; 100% is
2467
+ black).</span> Note that "50%" means "50% of the quantum
2468
+ range." This argument is a number between 0 and QuantumRange.
2469
+ To specify "50%" use <code>QuantumRange * 0.50</code>.</dd>
2467
2470
 
2468
2471
  <dt>sharpen</dt>
2469
2472
 
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 6 November 2007), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.9.1: class Image (attribute methods)</title>
9
+ <title>RMagick 2.9.2: class Image (attribute methods)</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -25,7 +25,7 @@
25
25
  </head>
26
26
 
27
27
  <body>
28
- <h6 id="header">RMagick 2.9.1 User's Guide and Reference</h6>
28
+ <h6 id="header">RMagick 2.9.2 User's Guide and Reference</h6>
29
29
 
30
30
  <div class="nav">
31
31
  &laquo;&nbsp;<a href="ilist.html">Prev</a> | <a href=
@@ -1555,6 +1555,21 @@ blur_image is 100% complete.
1555
1555
  <dt>VerticalTileVirtualPixelMethod</dt>
1556
1556
 
1557
1557
  <dd class="imquote">Vertically tile the image</dd>
1558
+
1559
+ <dt>HorizontalTileEdgeVirtualPixelMethod</dt>
1560
+
1561
+ <dd class="imquote">Horizontally tile the image and replicate
1562
+ the side edge pixels</dd>
1563
+
1564
+ <dt>VerticalTileEdgeVirtualPixelMethod</dt>
1565
+
1566
+ <dd class="imquote">Vertically tile the image and replicate
1567
+ the side edge pixels</dd>
1568
+
1569
+ <dt>CheckerTileVirtualPixelMethod</dt>
1570
+
1571
+ <dd class="imquote">Alternate squares with image and
1572
+ background color</dd>
1558
1573
  </dl>
1559
1574
 
1560
1575
  <p>Some of these values are not supported by older versions of
@@ -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.9.1: ImageMagick Conventions</title>
9
+ <title>RMagick 2.9.2: ImageMagick Conventions</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -69,7 +69,7 @@
69
69
  </head>
70
70
 
71
71
  <body>
72
- <h6 id="header">RMagick 2.9.1 User's Guide and Reference</h6>
72
+ <h6 id="header">RMagick 2.9.2 User's Guide and Reference</h6>
73
73
 
74
74
  <div class="nav">
75
75
  &laquo;&nbsp;<a href="usage.html">Prev</a> | <a href=
@@ -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.9.1 User's Guide and Reference</title>
9
+ <title>RMagick 2.9.2 User's Guide and Reference</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -105,7 +105,7 @@
105
105
  </div>
106
106
 
107
107
  <p id="magick">Ruby+ImageMagick<span class="tm">TM</span><br />
108
- Version 2.9.1</p>
108
+ Version 2.9.2</p>
109
109
 
110
110
  <h1>User's Guide and Reference</h1>
111
111
 
@@ -293,7 +293,7 @@
293
293
 
294
294
  <h3>About this document</h3>
295
295
 
296
- <p>This document describes Version 2.9.1 of RMagick. It is
296
+ <p>This document describes Version 2.9.2 of RMagick. It is
297
297
  divided into 4 parts. The first is this page. The second part is
298
298
  a user's guide covering both RMagick and ImageMagick usage and
299
299
  conventions. The third part is a reference guide to the
@@ -367,7 +367,7 @@
367
367
  command:</p>
368
368
  <pre class="example" id="version">
369
369
  $ ruby -rRMagick -e "puts Magick::Long_version"
370
- This is RMagick 2.0.0 ($Date: 2008/03/08 00:28:45 $) Copyright (C) 2007 by Timothy P. Hunter
370
+ This is RMagick 2.0.0 ($Date: 2009/02/28 23:50:16 $) Copyright (C) 2007 by Timothy P. Hunter
371
371
  Built with ImageMagick 6.3.7 12/20/07 Q16 http://www.imagemagick.org
372
372
  Built for ruby 1.8.6
373
373
  Web page: http://rmagick.rubyforge.org
@@ -399,9 +399,9 @@ Email: rmagick@rubyforge.org
399
399
  Notices</a></h3>
400
400
 
401
401
  <ul>
402
- <li>RMagick &copy; 2002-2008 Timothy P. Hunter.</li>
402
+ <li>RMagick &copy; 2002-2009 Timothy P. Hunter.</li>
403
403
 
404
- <li>ImageMagick &copy; 1999-2008 ImageMagick Studio.</li>
404
+ <li>ImageMagick &copy; 1999-2009 ImageMagick Studio.</li>
405
405
 
406
406
  <li>Ruby is copyrighted free software by Yukihiro
407
407
  Matsumoto.</li>
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 6 November 2007), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.9.1: class Image::Info - Optional method
9
+ <title>RMagick 2.9.2: class Image::Info - Optional method
10
10
  arguments</title>
11
11
  <meta http-equiv="Content-Type" content=
12
12
  "text/html; charset=us-ascii" />
@@ -44,7 +44,7 @@
44
44
  </head>
45
45
 
46
46
  <body>
47
- <h6 id="header">RMagick 2.9.1 User's Guide and Reference</h6>
47
+ <h6 id="header">RMagick 2.9.2 User's Guide and Reference</h6>
48
48
 
49
49
  <div class="nav">
50
50
  &laquo;&nbsp;<a href="struct.html">Prev</a> | <a href=
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 6 November 2007), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.9.1: module Magick</title>
9
+ <title>RMagick 2.9.2: module Magick</title>
10
10
  <meta http-equiv="Content-Type" content=
11
11
  "text/html; charset=us-ascii" />
12
12
  <meta name="GENERATOR" content="Quanta Plus" />
@@ -24,7 +24,7 @@
24
24
  </head>
25
25
 
26
26
  <body>
27
- <h6 id="header">RMagick 2.9.1 User's Guide and Reference</h6>
27
+ <h6 id="header">RMagick 2.9.2 User's Guide and Reference</h6>
28
28
 
29
29
  <div class="nav">
30
30
  &laquo;&nbsp;<a href="comtasks.html">Prev</a> | <a href=
@@ -6,7 +6,7 @@
6
6
  <meta name="generator" content=
7
7
  "HTML Tidy for Linux/x86 (vers 6 November 2007), see www.w3.org" />
8
8
 
9
- <title>RMagick 2.9.1: Magick Command Options and Their Equivalent
9
+ <title>RMagick 2.9.2: 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 @@
70
70
  </head>
71
71
 
72
72
  <body>
73
- <h6 id="header">RMagick 2.9.1 User's Guide and Reference</h6>
73
+ <h6 id="header">RMagick 2.9.2 User's Guide and Reference</h6>
74
74
 
75
75
  <div class="nav">
76
76
  &laquo; <a href="index.html">Prev</a> | <a href=
@@ -753,6 +753,17 @@
753
753
  <em>x</em>+<em>y</em>"</td>
754
754
  </tr>
755
755
 
756
+ <tr>
757
+ <td>-family <em>font_family</em></td>
758
+
759
+ <td>Draw#<a href=
760
+ "draw.html#fill">font_family</a>(<em>font_family</em>) (for
761
+ drawing)<br />
762
+ Draw#<a href=
763
+ "draw.html#fill_eq">font_family=</a><em>font_family</em>
764
+ (for annotation)</td>
765
+ </tr>
766
+
756
767
  <tr>
757
768
  <td>-fill <em>color</em></td>
758
769
 
@@ -1517,6 +1528,12 @@
1517
1528
  <em>height</em>)</td>
1518
1529
  </tr>
1519
1530
 
1531
+ <tr>
1532
+ <td>-respect-parenthesis</td>
1533
+
1534
+ <td>No equivalent</td>
1535
+ </tr>
1536
+
1520
1537
  <tr>
1521
1538
  <td>-reverse</td>
1522
1539
 
@@ -1572,13 +1589,6 @@
1572
1589
  <em>value</em></td>
1573
1590
  </tr>
1574
1591
 
1575
- <tr>
1576
- <td>-scenes <em>value</em>-<em>value</em></td>
1577
-
1578
- <td>See <a href="imusage.html#frames">Selecting frames from
1579
- a multi-frame image file</a></td>
1580
- </tr>
1581
-
1582
1592
  <tr>
1583
1593
  <td>-screen</td>
1584
1594
 
@@ -1771,6 +1781,17 @@
1771
1781
  "image2.html#export_pixels_to_str">export_pixels_to_str</a></td>
1772
1782
  </tr>
1773
1783
 
1784
+ <tr>
1785
+ <td>-stretch <em>font_stretch</em></td>
1786
+
1787
+ <td>Draw#<a href=
1788
+ "draw.html#stroke">font_stretch</a>(<em>font_stretch</em>)
1789
+ (for drawing)<br />
1790
+ Draw#<a href=
1791
+ "draw.html#stroke_eq">font_stretch=</a><em>font_stretch</em>
1792
+ (for annotation)</td>
1793
+ </tr>
1794
+
1774
1795
  <tr>
1775
1796
  <td>-strip</td>
1776
1797
 
@@ -1799,6 +1820,17 @@
1799
1820
  (for annotation)</td>
1800
1821
  </tr>
1801
1822
 
1823
+ <tr>
1824
+ <td>-style <em>font_style</em></td>
1825
+
1826
+ <td>Draw#<a href=
1827
+ "draw.html#stroke">font_style</a>(<em>font_style</em>) (for
1828
+ drawing)<br />
1829
+ Draw#<a href=
1830
+ "draw.html#stroke_eq">font_style=</a><em>font_style</em>
1831
+ (for annotation)</td>
1832
+ </tr>
1833
+
1802
1834
  <tr>
1803
1835
  <td>-swap <em>index</em>,<em>index</em></td>
1804
1836
 
@@ -1813,6 +1845,12 @@
1813
1845
  "image3.html#swirl">swirl</a>(<em>degrees</em>)</td>
1814
1846
  </tr>
1815
1847
 
1848
+ <tr>
1849
+ <td>-taint</td>
1850
+
1851
+ <td>No equivalent</td>
1852
+ </tr>
1853
+
1816
1854
  <tr>
1817
1855
  <td>-text-font</td>
1818
1856