rmagick 1.9.3 → 1.10.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.
- data/ChangeLog +18 -0
- data/README.html +12 -12
- data/README.txt +10 -10
- data/configure +728 -367
- data/configure.ac +134 -69
- data/doc/comtasks.html +11 -3
- data/doc/constants.html +162 -40
- data/doc/draw.html +2 -2
- data/doc/ex/crop_resized.rb +10 -0
- data/doc/ex/get_type_metrics.rb +26 -22
- data/doc/ex/vignette.rb +19 -0
- data/doc/ilist.html +0 -5
- data/doc/image1.html +219 -49
- data/doc/image2.html +115 -47
- data/doc/image3.html +105 -23
- data/doc/imageattrs.html +4 -23
- data/doc/imusage.html +1 -1
- data/doc/index.html +8 -9
- data/doc/info.html +23 -3
- data/doc/magick.html +1 -1
- data/doc/rvg.html +1 -1
- data/doc/rvgclip.html +1 -1
- data/doc/rvggroup.html +1 -1
- data/doc/rvgimage.html +1 -1
- data/doc/rvgpattern.html +1 -1
- data/doc/rvgshape.html +1 -1
- data/doc/rvgstyle.html +1 -1
- data/doc/rvgtext.html +3 -3
- data/doc/rvgtspan.html +1 -1
- data/doc/rvgtut.html +119 -101
- data/doc/rvguse.html +1 -1
- data/doc/rvgxform.html +1 -1
- data/doc/struct.html +17 -11
- data/doc/usage.html +22 -4
- data/examples/histogram.rb +48 -12
- data/examples/spinner.rb +49 -0
- data/ext/RMagick/MANIFEST +4 -1
- data/ext/RMagick/rmagick.h +62 -33
- data/ext/RMagick/rmagick_config.h.in +28 -31
- data/ext/RMagick/rmdraw.c +14 -6
- data/ext/RMagick/rmfill.c +2 -2
- data/ext/RMagick/rmilist.c +8 -36
- data/ext/RMagick/rmimage.c +370 -97
- data/ext/RMagick/rminfo.c +6 -6
- data/ext/RMagick/rmmain.c +114 -25
- data/ext/RMagick/rmutil.c +98 -35
- data/lib/RMagick.rb +17 -2
- data/lib/rvg/clippath.rb +2 -2
- data/lib/rvg/container.rb +2 -2
- data/lib/rvg/describable.rb +2 -2
- data/lib/rvg/embellishable.rb +2 -2
- data/lib/rvg/misc.rb +3 -3
- data/lib/rvg/paint.rb +2 -2
- data/lib/rvg/pathdata.rb +2 -2
- data/lib/rvg/rvg.rb +2 -2
- data/lib/rvg/stretchable.rb +2 -2
- data/lib/rvg/stylable.rb +2 -2
- data/lib/rvg/text.rb +2 -2
- data/lib/rvg/transformable.rb +2 -2
- data/lib/rvg/units.rb +2 -2
- data/rmagick.gemspec +1 -1
- metadata +362 -353
data/lib/RMagick.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
# $Id: RMagick.rb,v 1.
|
1
|
+
# $Id: RMagick.rb,v 1.37 2005/12/31 15:33:43 rmagick Exp $
|
2
2
|
#==============================================================================
|
3
|
-
# Copyright (C)
|
3
|
+
# Copyright (C) 2006 by Timothy P. Hunter
|
4
4
|
# Name: RMagick.rb
|
5
5
|
# Author: Tim Hunter
|
6
6
|
# Purpose: Extend Ruby to interface with ImageMagick.
|
@@ -637,6 +637,21 @@ class Image
|
|
637
637
|
self
|
638
638
|
end
|
639
639
|
|
640
|
+
# Force an image to exact dimensions without changing the aspect ratio.
|
641
|
+
# Resize and crop if necessary. (Thanks to Jerett Taylor!)
|
642
|
+
def crop_resized(ncols, nrows, gravity=CenterGravity)
|
643
|
+
copy.crop_resized!(ncols, nrows, gravity)
|
644
|
+
end
|
645
|
+
|
646
|
+
def crop_resized!(ncols, nrows, gravity=CenterGravity)
|
647
|
+
if ncols != columns || nrows != rows
|
648
|
+
scale = [ncols/columns.to_f, nrows/rows.to_f].max
|
649
|
+
resize!(scale*columns+0.5, scale*rows+0.5)
|
650
|
+
end
|
651
|
+
crop!(gravity, ncols, nrows, true) if ncols != columns || nrows != rows
|
652
|
+
self
|
653
|
+
end
|
654
|
+
|
640
655
|
# Used by ImageList methods - see ImageList#cur_image
|
641
656
|
def cur_image
|
642
657
|
self
|
data/lib/rvg/clippath.rb
CHANGED
data/lib/rvg/container.rb
CHANGED
data/lib/rvg/describable.rb
CHANGED
data/lib/rvg/embellishable.rb
CHANGED
data/lib/rvg/misc.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
# $Id: misc.rb,v 1.
|
2
|
-
# Copyright (C)
|
1
|
+
# $Id: misc.rb,v 1.9 2005/12/31 14:41:04 rmagick Exp $
|
2
|
+
# Copyright (C) 2006 Timothy P. Hunter
|
3
3
|
class Magick::RVG
|
4
4
|
|
5
5
|
# This is a standard deep_copy method that is used in most classes.
|
@@ -95,7 +95,7 @@ module Magick::RVG::Utility
|
|
95
95
|
end
|
96
96
|
|
97
97
|
# escape existing braces, surround with braces
|
98
|
-
|
98
|
+
text.gsub!(/[}]/) { |b| '\\' + b }
|
99
99
|
return '{' + text + '}'
|
100
100
|
end
|
101
101
|
|
data/lib/rvg/paint.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
|
-
# $Id: paint.rb,v 1.
|
3
|
-
# Copyright (C)
|
2
|
+
# $Id: paint.rb,v 1.3 2005/12/31 14:41:04 rmagick Exp $
|
3
|
+
# Copyright (C) 2006 Timothy P. Hunter
|
4
4
|
#++
|
5
5
|
# Defines paint server classes.
|
6
6
|
# Eventually this will include gradients.
|
data/lib/rvg/pathdata.rb
CHANGED
data/lib/rvg/rvg.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--############################################################################
|
2
|
-
# $Id: rvg.rb,v 1.
|
2
|
+
# $Id: rvg.rb,v 1.6 2005/12/31 14:41:04 rmagick Exp $
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2006 by Timothy P. Hunter
|
5
5
|
#
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
7
7
|
# copy of this software and associated documentation files (the
|
data/lib/rvg/stretchable.rb
CHANGED
data/lib/rvg/stylable.rb
CHANGED
data/lib/rvg/text.rb
CHANGED
data/lib/rvg/transformable.rb
CHANGED
data/lib/rvg/units.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
# $Id: units.rb,v 1.
|
2
|
-
# Copyright (C)
|
1
|
+
# $Id: units.rb,v 1.2 2005/12/31 14:41:04 rmagick Exp $
|
2
|
+
# Copyright (C) 2006 Timothy P. Hunter
|
3
3
|
class Magick::RVG
|
4
4
|
|
5
5
|
# Define RVG.dpi and RVG.dpi=. Add conversions to Fixnum and Float classes
|
data/rmagick.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'date'
|
2
2
|
Gem::Specification.new do |s|
|
3
3
|
s.name = %q{rmagick}
|
4
|
-
s.version = "1.
|
4
|
+
s.version = "1.10.0"
|
5
5
|
s.date = Date.today.to_s
|
6
6
|
s.summary = %q{RMagick is an interface between the Ruby programming language and the ImageMagick and GraphicsMagick image processing libraries.}
|
7
7
|
s.description =<<DESCRIPTION
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.8.
|
2
|
+
rubygems_version: 0.8.11
|
3
3
|
specification_version: 1
|
4
4
|
name: rmagick
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.
|
7
|
-
date:
|
6
|
+
version: 1.10.0
|
7
|
+
date: 2006-01-21 00:00:00 -05:00
|
8
8
|
summary: RMagick is an interface between the Ruby programming language and the ImageMagick and GraphicsMagick image processing libraries.
|
9
9
|
require_paths:
|
10
|
-
|
11
|
-
|
10
|
+
- lib
|
11
|
+
- .
|
12
12
|
email: rmagick@rubyforge.org
|
13
13
|
homepage: http://rubyforge.org/projects/rmagick
|
14
14
|
rubyforge_project: rmagick
|
@@ -19,361 +19,370 @@ bindir: bin
|
|
19
19
|
has_rdoc: false
|
20
20
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
21
21
|
requirements:
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
version: 1.6.7
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 1.6.7
|
26
25
|
version:
|
27
26
|
platform: ruby
|
27
|
+
signing_key:
|
28
|
+
cert_chain:
|
28
29
|
authors:
|
29
|
-
|
30
|
+
- Tim Hunter
|
30
31
|
files:
|
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
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
32
|
+
- doc
|
33
|
+
- ext
|
34
|
+
- ChangeLog
|
35
|
+
- Makefile.in
|
36
|
+
- README-Mac-OSX.txt
|
37
|
+
- README.txt
|
38
|
+
- configure.ac
|
39
|
+
- install.rb
|
40
|
+
- metaconfig.in
|
41
|
+
- post-clean.rb
|
42
|
+
- post-install.rb
|
43
|
+
- post-setup.rb
|
44
|
+
- rmagick.gemspec
|
45
|
+
- uninstall.rb
|
46
|
+
- examples
|
47
|
+
- lib
|
48
|
+
- README.html
|
49
|
+
- configure
|
50
|
+
- doc/css
|
51
|
+
- doc/ex
|
52
|
+
- doc/comtasks.html
|
53
|
+
- doc/constants.html
|
54
|
+
- doc/draw.html
|
55
|
+
- doc/ilist.html
|
56
|
+
- doc/image1.html
|
57
|
+
- doc/image2.html
|
58
|
+
- doc/image3.html
|
59
|
+
- doc/imageattrs.html
|
60
|
+
- doc/imusage.html
|
61
|
+
- doc/index.html
|
62
|
+
- doc/info.html
|
63
|
+
- doc/magick.html
|
64
|
+
- doc/rvg.html
|
65
|
+
- doc/rvgclip.html
|
66
|
+
- doc/rvggroup.html
|
67
|
+
- doc/rvgimage.html
|
68
|
+
- doc/rvgpattern.html
|
69
|
+
- doc/rvgshape.html
|
70
|
+
- doc/rvgstyle.html
|
71
|
+
- doc/rvgtext.html
|
72
|
+
- doc/rvgtspan.html
|
73
|
+
- doc/rvgtut.html
|
74
|
+
- doc/rvguse.html
|
75
|
+
- doc/rvgxform.html
|
76
|
+
- doc/struct.html
|
77
|
+
- doc/usage.html
|
78
|
+
- doc/scripts
|
79
|
+
- doc/css/popup.css
|
80
|
+
- doc/css/doc.css
|
81
|
+
- doc/css/ref.css
|
82
|
+
- doc/ex/images
|
83
|
+
- doc/ex/Adispatch.rb
|
84
|
+
- doc/ex/InitialCoords.rb
|
85
|
+
- doc/ex/NewCoordSys.rb
|
86
|
+
- doc/ex/OrigCoordSys.rb
|
87
|
+
- doc/ex/PreserveAspectRatio.rb
|
88
|
+
- doc/ex/RotateScale.rb
|
89
|
+
- doc/ex/Skew.rb
|
90
|
+
- doc/ex/Use01.rb
|
91
|
+
- doc/ex/Use02.rb
|
92
|
+
- doc/ex/Use03.rb
|
93
|
+
- doc/ex/ViewBox.rb
|
94
|
+
- doc/ex/Zconstitute.rb
|
95
|
+
- doc/ex/adaptive_threshold.rb
|
96
|
+
- doc/ex/add_noise.rb
|
97
|
+
- doc/ex/affine.rb
|
98
|
+
- doc/ex/affine_transform.rb
|
99
|
+
- doc/ex/arc.rb
|
100
|
+
- doc/ex/arcpath.rb
|
101
|
+
- doc/ex/arcs01.rb
|
102
|
+
- doc/ex/arcs02.rb
|
103
|
+
- doc/ex/average.rb
|
104
|
+
- doc/ex/axes.rb
|
105
|
+
- doc/ex/baseline_shift01.rb
|
106
|
+
- doc/ex/bilevel_channel.rb
|
107
|
+
- doc/ex/blur_image.rb
|
108
|
+
- doc/ex/border.rb
|
109
|
+
- doc/ex/bounding_box.rb
|
110
|
+
- doc/ex/cbezier1.rb
|
111
|
+
- doc/ex/cbezier2.rb
|
112
|
+
- doc/ex/cbezier3.rb
|
113
|
+
- doc/ex/cbezier4.rb
|
114
|
+
- doc/ex/cbezier5.rb
|
115
|
+
- doc/ex/cbezier6.rb
|
116
|
+
- doc/ex/channel.rb
|
117
|
+
- doc/ex/charcoal.rb
|
118
|
+
- doc/ex/chop.rb
|
119
|
+
- doc/ex/circle.rb
|
120
|
+
- doc/ex/circle01.rb
|
121
|
+
- doc/ex/clip_path.rb
|
122
|
+
- doc/ex/coalesce.rb
|
123
|
+
- doc/ex/color_fill_to_border.rb
|
124
|
+
- doc/ex/color_floodfill.rb
|
125
|
+
- doc/ex/color_histogram.rb
|
126
|
+
- doc/ex/color_reset.rb
|
127
|
+
- doc/ex/colorize.rb
|
128
|
+
- doc/ex/colors.rb
|
129
|
+
- doc/ex/composite.rb
|
130
|
+
- doc/ex/contrast.rb
|
131
|
+
- doc/ex/crop.rb
|
132
|
+
- doc/ex/crop_resized.rb
|
133
|
+
- doc/ex/crop_with_gravity.rb
|
134
|
+
- doc/ex/cubic01.rb
|
135
|
+
- doc/ex/cubic02.rb
|
136
|
+
- doc/ex/cycle_colormap.rb
|
137
|
+
- doc/ex/demo.rb
|
138
|
+
- doc/ex/drawcomp.rb
|
139
|
+
- doc/ex/drop_shadow.rb
|
140
|
+
- doc/ex/edge.rb
|
141
|
+
- doc/ex/ellipse.rb
|
142
|
+
- doc/ex/ellipse01.rb
|
143
|
+
- doc/ex/emboss.rb
|
144
|
+
- doc/ex/enhance.rb
|
145
|
+
- doc/ex/equalize.rb
|
146
|
+
- doc/ex/evenodd.rb
|
147
|
+
- doc/ex/flatten_images.rb
|
148
|
+
- doc/ex/flip.rb
|
149
|
+
- doc/ex/flop.rb
|
150
|
+
- doc/ex/font_styles.rb
|
151
|
+
- doc/ex/fonts.rb
|
152
|
+
- doc/ex/frame.rb
|
153
|
+
- doc/ex/gaussian_blur.rb
|
154
|
+
- doc/ex/get_multiline_type_metrics.rb
|
155
|
+
- doc/ex/get_pixels.rb
|
156
|
+
- doc/ex/get_type_metrics.rb
|
157
|
+
- doc/ex/gradientfill.rb
|
158
|
+
- doc/ex/grav.rb
|
159
|
+
- doc/ex/gravity.rb
|
160
|
+
- doc/ex/group.rb
|
161
|
+
- doc/ex/hatchfill.rb
|
162
|
+
- doc/ex/image.rb
|
163
|
+
- doc/ex/implode.rb
|
164
|
+
- doc/ex/level.rb
|
165
|
+
- doc/ex/level_channel.rb
|
166
|
+
- doc/ex/line.rb
|
167
|
+
- doc/ex/line01.rb
|
168
|
+
- doc/ex/map.rb
|
169
|
+
- doc/ex/map_f.rb
|
170
|
+
- doc/ex/matte_fill_to_border.rb
|
171
|
+
- doc/ex/matte_floodfill.rb
|
172
|
+
- doc/ex/matte_replace.rb
|
173
|
+
- doc/ex/median_filter.rb
|
174
|
+
- doc/ex/modulate.rb
|
175
|
+
- doc/ex/mono.rb
|
176
|
+
- doc/ex/morph.rb
|
177
|
+
- doc/ex/mosaic.rb
|
178
|
+
- doc/ex/motion_blur.rb
|
179
|
+
- doc/ex/negate.rb
|
180
|
+
- doc/ex/negate_channel.rb
|
181
|
+
- doc/ex/nested_rvg.rb
|
182
|
+
- doc/ex/nonzero.rb
|
183
|
+
- doc/ex/normalize.rb
|
184
|
+
- doc/ex/oil_paint.rb
|
185
|
+
- doc/ex/opacity.rb
|
186
|
+
- doc/ex/opaque.rb
|
187
|
+
- doc/ex/ordered_dither.rb
|
188
|
+
- doc/ex/path.rb
|
189
|
+
- doc/ex/pattern1.rb
|
190
|
+
- doc/ex/pattern2.rb
|
191
|
+
- doc/ex/polygon.rb
|
192
|
+
- doc/ex/polygon01.rb
|
193
|
+
- doc/ex/polyline.rb
|
194
|
+
- doc/ex/polyline01.rb
|
195
|
+
- doc/ex/posterize.rb
|
196
|
+
- doc/ex/preview.rb
|
197
|
+
- doc/ex/qbezierpath.rb
|
198
|
+
- doc/ex/quad01.rb
|
199
|
+
- doc/ex/quantize-m.rb
|
200
|
+
- doc/ex/radial_blur.rb
|
201
|
+
- doc/ex/raise.rb
|
202
|
+
- doc/ex/random_threshold_channel.rb
|
203
|
+
- doc/ex/rect01.rb
|
204
|
+
- doc/ex/rect02.rb
|
205
|
+
- doc/ex/rectangle.rb
|
206
|
+
- doc/ex/reduce_noise.rb
|
207
|
+
- doc/ex/roll.rb
|
208
|
+
- doc/ex/rotate.rb
|
209
|
+
- doc/ex/rotate_f.rb
|
210
|
+
- doc/ex/roundrect.rb
|
211
|
+
- doc/ex/rubyname.rb
|
212
|
+
- doc/ex/rvg_clippath.rb
|
213
|
+
- doc/ex/rvg_linecap.rb
|
214
|
+
- doc/ex/rvg_linejoin.rb
|
215
|
+
- doc/ex/rvg_opacity.rb
|
216
|
+
- doc/ex/rvg_pattern.rb
|
217
|
+
- doc/ex/rvg_stroke_dasharray.rb
|
218
|
+
- doc/ex/segment.rb
|
219
|
+
- doc/ex/sepiatone.rb
|
220
|
+
- doc/ex/shade.rb
|
221
|
+
- doc/ex/shadow.rb
|
222
|
+
- doc/ex/shave.rb
|
223
|
+
- doc/ex/shear.rb
|
224
|
+
- doc/ex/skewx.rb
|
225
|
+
- doc/ex/skewy.rb
|
226
|
+
- doc/ex/smile.rb
|
227
|
+
- doc/ex/solarize.rb
|
228
|
+
- doc/ex/splice.rb
|
229
|
+
- doc/ex/spread.rb
|
230
|
+
- doc/ex/stegano.rb
|
231
|
+
- doc/ex/stroke_dasharray.rb
|
232
|
+
- doc/ex/stroke_fill.rb
|
233
|
+
- doc/ex/stroke_linecap.rb
|
234
|
+
- doc/ex/stroke_linejoin.rb
|
235
|
+
- doc/ex/stroke_width.rb
|
236
|
+
- doc/ex/swirl.rb
|
237
|
+
- doc/ex/text.rb
|
238
|
+
- doc/ex/text01.rb
|
239
|
+
- doc/ex/text_align.rb
|
240
|
+
- doc/ex/text_antialias.rb
|
241
|
+
- doc/ex/text_styles.rb
|
242
|
+
- doc/ex/text_undercolor.rb
|
243
|
+
- doc/ex/texture_fill_to_border.rb
|
244
|
+
- doc/ex/texture_floodfill.rb
|
245
|
+
- doc/ex/texturefill.rb
|
246
|
+
- doc/ex/threshold.rb
|
247
|
+
- doc/ex/to_blob.rb
|
248
|
+
- doc/ex/translate.rb
|
249
|
+
- doc/ex/transparent.rb
|
250
|
+
- doc/ex/tref01.rb
|
251
|
+
- doc/ex/triangle01.rb
|
252
|
+
- doc/ex/trim.rb
|
253
|
+
- doc/ex/tspan01.rb
|
254
|
+
- doc/ex/tspan02.rb
|
255
|
+
- doc/ex/tspan03.rb
|
256
|
+
- doc/ex/unsharp_mask.rb
|
257
|
+
- doc/ex/viewex.rb
|
258
|
+
- doc/ex/vignette.rb
|
259
|
+
- doc/ex/wave.rb
|
260
|
+
- doc/ex/writing_mode01.rb
|
261
|
+
- doc/ex/writing_mode02.rb
|
262
|
+
- doc/ex/images/Ballerina.jpg
|
263
|
+
- doc/ex/images/Ballerina3.jpg
|
264
|
+
- doc/ex/images/Button_0.gif
|
265
|
+
- doc/ex/images/Button_1.gif
|
266
|
+
- doc/ex/images/Button_2.gif
|
267
|
+
- doc/ex/images/Button_3.gif
|
268
|
+
- doc/ex/images/Button_4.gif
|
269
|
+
- doc/ex/images/Button_5.gif
|
270
|
+
- doc/ex/images/Button_6.gif
|
271
|
+
- doc/ex/images/Button_7.gif
|
272
|
+
- doc/ex/images/Button_8.gif
|
273
|
+
- doc/ex/images/Button_9.gif
|
274
|
+
- doc/ex/images/Button_A.gif
|
275
|
+
- doc/ex/images/Button_B.gif
|
276
|
+
- doc/ex/images/Button_C.gif
|
277
|
+
- doc/ex/images/Button_D.gif
|
278
|
+
- doc/ex/images/Button_E.gif
|
279
|
+
- doc/ex/images/Button_F.gif
|
280
|
+
- doc/ex/images/Button_G.gif
|
281
|
+
- doc/ex/images/Button_H.gif
|
282
|
+
- doc/ex/images/Button_I.gif
|
283
|
+
- doc/ex/images/Button_J.gif
|
284
|
+
- doc/ex/images/Button_K.gif
|
285
|
+
- doc/ex/images/Button_L.gif
|
286
|
+
- doc/ex/images/Button_M.gif
|
287
|
+
- doc/ex/images/Button_N.gif
|
288
|
+
- doc/ex/images/Button_O.gif
|
289
|
+
- doc/ex/images/Button_P.gif
|
290
|
+
- doc/ex/images/Button_Q.gif
|
291
|
+
- doc/ex/images/Button_R.gif
|
292
|
+
- doc/ex/images/Button_S.gif
|
293
|
+
- doc/ex/images/Button_T.gif
|
294
|
+
- doc/ex/images/Button_U.gif
|
295
|
+
- doc/ex/images/Button_V.gif
|
296
|
+
- doc/ex/images/Button_W.gif
|
297
|
+
- doc/ex/images/Button_X.gif
|
298
|
+
- doc/ex/images/Button_Y.gif
|
299
|
+
- doc/ex/images/Button_Z.gif
|
300
|
+
- doc/ex/images/Cheetah.jpg
|
301
|
+
- doc/ex/images/Coffee.wmf
|
302
|
+
- doc/ex/images/Flower_Hat.jpg
|
303
|
+
- doc/ex/images/Gold_Statue.jpg
|
304
|
+
- doc/ex/images/Hot_Air_Balloons.jpg
|
305
|
+
- doc/ex/images/Hot_Air_Balloons_H.jpg
|
306
|
+
- doc/ex/images/No.wmf
|
307
|
+
- doc/ex/images/Polynesia.jpg
|
308
|
+
- doc/ex/images/Red_Rocks.jpg
|
309
|
+
- doc/ex/images/Shorts.jpg
|
310
|
+
- doc/ex/images/Snake.wmf
|
311
|
+
- doc/ex/images/Violin.jpg
|
312
|
+
- doc/ex/images/big-duck.gif
|
313
|
+
- doc/ex/images/duck.gif
|
314
|
+
- doc/ex/images/duck0.gif
|
315
|
+
- doc/ex/images/duck1.gif
|
316
|
+
- doc/ex/images/duck10.gif
|
317
|
+
- doc/ex/images/duck11.gif
|
318
|
+
- doc/ex/images/duck12.gif
|
319
|
+
- doc/ex/images/duck13.gif
|
320
|
+
- doc/ex/images/duck14.gif
|
321
|
+
- doc/ex/images/duck15.gif
|
322
|
+
- doc/ex/images/duck2.gif
|
323
|
+
- doc/ex/images/duck3.gif
|
324
|
+
- doc/ex/images/duck4.gif
|
325
|
+
- doc/ex/images/duck5.gif
|
326
|
+
- doc/ex/images/duck6.gif
|
327
|
+
- doc/ex/images/duck7.gif
|
328
|
+
- doc/ex/images/duck8.gif
|
329
|
+
- doc/ex/images/duck9.gif
|
330
|
+
- doc/ex/images/graydient230x6.gif
|
331
|
+
- doc/ex/images/logo400x83.gif
|
332
|
+
- doc/ex/images/model.miff
|
333
|
+
- doc/ex/images/notimplemented.gif
|
334
|
+
- doc/ex/images/smile.miff
|
335
|
+
- doc/ex/images/spin.gif
|
336
|
+
- doc/scripts/doc.js
|
337
|
+
- ext/RMagick
|
338
|
+
- ext/RMagick/MANIFEST
|
339
|
+
- ext/RMagick/extconf.rb.in
|
340
|
+
- ext/RMagick/rmagick.h
|
341
|
+
- ext/RMagick/rmagick_config.h.in
|
342
|
+
- ext/RMagick/rmdraw.c
|
343
|
+
- ext/RMagick/rmfill.c
|
344
|
+
- ext/RMagick/rmilist.c
|
345
|
+
- ext/RMagick/rmimage.c
|
346
|
+
- ext/RMagick/rminfo.c
|
347
|
+
- ext/RMagick/rmmain.c
|
348
|
+
- ext/RMagick/rmutil.c
|
349
|
+
- examples/describe.rb
|
350
|
+
- examples/histogram.rb
|
351
|
+
- examples/identify.rb
|
352
|
+
- examples/image_opacity.rb
|
353
|
+
- examples/import_export.rb
|
354
|
+
- examples/pattern_fill.rb
|
355
|
+
- examples/rotating_text.rb
|
356
|
+
- examples/spinner.rb
|
357
|
+
- examples/thumbnail.rb
|
358
|
+
- examples/vignette.rb
|
359
|
+
- lib/rvg
|
360
|
+
- lib/RMagick.rb
|
361
|
+
- lib/rvg/clippath.rb
|
362
|
+
- lib/rvg/container.rb
|
363
|
+
- lib/rvg/deep_equal.rb
|
364
|
+
- lib/rvg/describable.rb
|
365
|
+
- lib/rvg/embellishable.rb
|
366
|
+
- lib/rvg/misc.rb
|
367
|
+
- lib/rvg/paint.rb
|
368
|
+
- lib/rvg/pathdata.rb
|
369
|
+
- lib/rvg/rvg.rb
|
370
|
+
- lib/rvg/stretchable.rb
|
371
|
+
- lib/rvg/stylable.rb
|
372
|
+
- lib/rvg/text.rb
|
373
|
+
- lib/rvg/transformable.rb
|
374
|
+
- lib/rvg/units.rb
|
371
375
|
test_files: []
|
376
|
+
|
372
377
|
rdoc_options: []
|
378
|
+
|
373
379
|
extra_rdoc_files: []
|
380
|
+
|
374
381
|
executables: []
|
382
|
+
|
375
383
|
extensions:
|
376
|
-
|
384
|
+
- configure
|
377
385
|
requirements:
|
378
|
-
|
379
|
-
dependencies: []
|
386
|
+
- ImageMagick 6.0.0 or later, or GraphicsMagick 1.0.0 or later
|
387
|
+
dependencies: []
|
388
|
+
|