doc/struct.html in rmagick-2.4.0 vs doc/struct.html in rmagick-2.5.0
- old
+ new
@@ -4,11 +4,11 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="generator" content=
"HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org" />
- <title>RMagick 2.4.0: Miscellaneous classes</title>
+ <title>RMagick 2.5.0: Miscellaneous classes</title>
<meta http-equiv="Content-Type" content=
"text/html; charset=us-ascii" />
<meta name="GENERATOR" content="Quanta Plus" />
<meta name="Copyright" content=
"Copyright (C) 2006 by Timothy P. Hunter" />
@@ -25,11 +25,11 @@
/*]]>*/
</style>
</head>
<body>
- <h6 id="header">RMagick 2.4.0 User's Guide and Reference</h6>
+ <h6 id="header">RMagick 2.5.0 User's Guide and Reference</h6>
<div class="nav">
« <a href="draw.html">Prev</a> | <a href=
"index.html">Contents</a> | <a href=
"info.html">Next</a> »
@@ -474,13 +474,13 @@
<td align="center"><strong>Explanation</strong></td>
</tr>
<tr>
- <td>PercentGeometry</td>
+ <td valign="top">PercentGeometry</td>
- <td align="center">%</td>
+ <td valign="top" align="center">%</td>
<td>Normally the attributes are treated as pixels. Use
this flag when the <code>width</code> and
<code>height</code> attributes represent
<em>percentages</em>. For example, 125x75 means 125% of
@@ -488,50 +488,64 @@
<code>y</code> attributes are not affected by this
flag.</td>
</tr>
<tr>
- <td>AspectGeometry</td>
+ <td valign="top">AspectGeometry</td>
- <td align="center">!</td>
+ <td valign="top" align="center">!</td>
<td>Use this flag when you want to force the new image to
have exactly the size specified by the the
<code>width</code> and <code>height</code>
attributes.</td>
</tr>
<tr>
- <td>LessGeometry</td>
+ <td valign="top">LessGeometry</td>
- <td align="center"><</td>
+ <td valign="top" align="center"><</td>
<td>Use this flag when you want to change the size of the
image only if both its width and height are smaller the
values specified by those attributes. The image size is
changed proportionally.</td>
</tr>
<tr>
- <td>GreaterGeometry</td>
+ <td valign="top">GreaterGeometry</td>
- <td align="center">></td>
+ <td valign="top" align="center">></td>
<td>Use this flag when you want to change the size of the
image if either its width and height exceed the values
specified by those attributes. The image size is changed
proportionally.</td>
</tr>
<tr>
- <td>AreaGeometry</td>
+ <td valign="top">AreaGeometry</td>
- <td align="center">@</td>
+ <td valign="top" align="center">@</td>
<td>This flag is useful only with a single
<code>width</code> attribute. When present, it means the
<code>width</code> attribute represents the total area of
the image in pixels.</td>
+ </tr>
+
+ <tr>
+ <td valign="top">MinimumGeometry</td>
+
+ <td valign="top" align="center">^</td>
+
+ <td class="imquote">Use ^ to set a minimum image size
+ limit. The geometry 640x480^, for example, means the
+ image width will not be less than 640 and the image
+ height will not be less than 480 pixels after the resize.
+ One of those dimensions will match the requested size,
+ but the image will likely overflow the space requested to
+ preserve its aspect ratio.</td>
</tr>
</table>
<p>If any attribute is omitted the default is nil or 0.</p>