File: rvgimage.html

package info (click to toggle)
ruby-rmagick 6.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,232 kB
  • sloc: cpp: 19,563; ruby: 17,147; sh: 88; javascript: 36; makefile: 13
file content (257 lines) | stat: -rw-r--r-- 7,827 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="https://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 0.0.0: RVG Reference: RVG::Image Class</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" />
    <link rel="stylesheet" type="text/css" href="css/doc.css" />
    <script type="text/javascript" src="scripts/doc.js"></script>
    <script type="text/javascript">
      //<![CDATA[
      //]]>
    </script>
    <style type="text/css">
      /*<![CDATA[*/
        }
      /*]]>*/
    </style>
  </head>

  <body>
    <h6 id="header">RMagick 0.0.0 User's Guide and Reference</h6>

    <div class="nav">&laquo;&nbsp;<a href="rvggroup.html">Prev</a> | <a href="index.html">Contents</a> | <a href="rvgpattern.html">Next</a>&nbsp;&raquo;</div>

    <h1>class RVG::Image <span class="superclass">&lt; Object</span></h1>

    <div id="toc">
      <h2>Table of Contents</h2>

      <h3>class methods</h3>

      <ul>
        <li><a href="#new">new</a></li>
      </ul>

      <h3>attributes</h3>

      <ul>
        <li><a href="#desc">desc, desc=</a></li>

        <li><a href="#metadata">metadata, metadata=</a></li>

        <li><a href="#RVG_title">title, title=</a></li>
      </ul>

      <h3>instance methods</h3>

      <ul>
        <li><a href="#preserve_aspect_ratio">preserve_aspect_ratio</a></li>
      </ul>

      <h3>shared methods</h3>

      <p>
        In addition to the methods listed above,
        <code>class RVG::Image</code> also implements the <a href="rvgstyle.html">styles</a> method and the <a href="rvgxform.html">transform methods</a>.
      </p>
    </div>

    <h2 class="methods">class methods</h2>

    <div class="sig">
      <h3 id="new">new</h3>

      <p>
        <span class="arg">RVG::Image</span>.new(<span class="arg">raster_image</span>, <span class="arg">width</span>=nil, <span class="arg">height</span>=nil,
        <span class="arg">x</span>=0, <span class="arg">y</span>=0) -&gt; <em>image</em>
      </p>
    </div>

    <div class="desc">
      <h4>Description</h4>

      <p>
        Constructs a raster image object. The viewbox is defined by the image bounds. This method is usually called indirectly via the
        <code>image</code> method in the <a href="rvg.html#RVG_image">RVG</a>, <a href="rvggroup.html#image">RVG::Group</a>, or
        <a href="rvgpattern.html#image">RVG::Pattern</a> classes.
      </p>

      <h4>Arguments</h4>

      <dl>
        <dt>raster_image</dt>

        <dd>A <a href="image1.html#new">Magick::Image</a> object.</dd>

        <dt>width, height</dt>

        <dd>The width and height of the rectangle in which the image is placed.</dd>

        <dt>x, y</dt>

        <dd>The <em>x-</em> and <em>y</em>-axis location of the rectangle in which the image is placed.</dd>
      </dl>

      <h4>Example</h4>

      <p>See <a href="#preserve_aspect_ratio">preserve_aspect_ratio</a></p>
    </div>

    <h2 class="methods">attributes</h2>

    <div class="sig">
      <h3 id="desc">desc, desc=</h3>

      <p>
        <span class="arg">img</span>.desc -&gt; <em>string</em><br />
        <span class="arg">img</span>.desc = <span class="arg">string</span>
      </p>
    </div>

    <div class="desc">
      <h4>Description</h4>
      Use the <code>desc</code> attribute to assign a text description to the image.
    </div>

    <div class="sig">
      <h3 id="metadata">metadata, metadata=</h3>

      <p>
        <span class="arg">img</span>.metadata -&gt; <em>string</em><br />
        <span class="arg">img</span>.metadata = <span class="arg">string</span>
      </p>
    </div>

    <div class="desc">
      <h4>Description</h4>
      Use the <code>metadata</code> attribute to assign additional metadata to the image.
    </div>

    <div class="sig">
      <h3 id="RVG_title">title, title=</h3>

      <p>
        <span class="arg">img</span>.title -&gt; <em>string</em><br />
        <span class="arg">img</span>.title = <span class="arg">string</span>
      </p>
    </div>

    <div class="desc">
      <h4>Description</h4>
      Use the <code>title</code> attribute to assign a title to the image.
    </div>

    <h2 class="methods">instance methods</h2>

    <div class="sig">
      <h3 id="preserve_aspect_ratio">preserve_aspect_ratio</h3>

      <p>
        <span class="arg">img</span>.preserve_aspect_ratio(<span class="arg">align</span>, <span class="arg">meet_or_slice</span>='meet') -&gt; <em>self</em>
      </p>
    </div>

    <div class="desc">
      <h4>Description</h4>

      <p>
        Use <code>preserve_aspect_ratio</code> to specify whether or not the image is stretched to fit the rectangle in which it is placed. If not, you can
        specify how to fit the image into the space.
      </p>

      <h4>Arguments</h4>

      <dl>
        <dt>align</dt>

        <dd>
          When the value of the <code>meet_or_slice</code> argument is 'meet' or 'slice', this argument controls the placement of the image within the viewport.
          The <code>align</code> argument is the concatenation of an <em>x</em>-alignment and a <em>y</em>-alignment. The values are shown in these lists:

          <h6><em>x</em>-alignment</h6>

          <dl>
            <dt>xMin</dt>

            <dd>align the minimum <em>x</em> value of the image with the left corner of the viewport.</dd>

            <dt>xMid</dt>

            <dd>vertically center the image within the viewport.</dd>

            <dt>xMax</dt>

            <dd>align the maximum <em>x</em> value of the image with the right corner of the viewport.</dd>
          </dl>

          <h6><em>y</em>-alignment</h6>

          <dl>
            <dt>YMin</dt>

            <dd>align the minimum <em>y</em> value of the image with the top of the viewport.</dd>

            <dt>YMid</dt>

            <dd>horizontally center the image within the viewport.</dd>

            <dt>YMax</dt>

            <dd>align the maximum <em>y</em> value of the image with the bottom of the viewport</dd>
          </dl>
        </dd>

        <dt>meet_or_slice</dt>

        <dd>
          This argument can have one of these three values:

          <dl>
            <dt>'none'</dt>

            <dd>The image is scaled as necessary so that it fits exactly within the viewport. The aspect ratio is <em>not</em> maintained.</dd>

            <dt>'meet'</dt>

            <dd>
              The image is scaled as necessary so that the larger dimension exactly fits the viewport. There may be some unused space in the viewport. The
              aspect ratio is maintained.
            </dd>

            <dt>'slice'</dt>

            <dd>
              The image is scaled as necessary so that the smaller dimension exactly fits the viewport. Some of the image in the larger dimension may be cut
              off. The aspect ratio is maintained.
            </dd>
          </dl>
        </dd>
      </dl>

      <h4>Example</h4>

      <p>
        <a href="javascript:popup('image.rb.html')"><img src="ex/image.gif" title="Click to see the example script" alt="preserve_aspect_ratio example" /></a>
      </p>

      <h4>Returns</h4>

      <p><span class="arg">self</span></p>

      <h4>See Also</h4>

      <p>
        <a href="rvg.html#RVG_preserve_aspect_ratio">RVG#preserve_aspect_ratio</a>
      </p>
    </div>

    <p class="spacer">&nbsp;</p>

    <div class="nav">&laquo;&nbsp;<a href="rvggroup.html">Prev</a> | <a href="index.html">Contents</a> | <a href="rvgpattern.html">Next</a>&nbsp;&raquo;</div>
  </body>
</html>