rmagick 1.15.9 → 1.15.10

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.

@@ -37,6 +37,10 @@
37
37
  #undef HAVE_COMPOSITEIMAGECHANNEL
38
38
  /* Introduced in IM 6.2.6 */
39
39
  #undef HAVE_CONTRASTSTRETCHIMAGECHANNEL
40
+ /* Introduced in IM 6.3.5-9 */
41
+ #undef HAVE_CONVERTHSLTORGB
42
+ /* Introduced in IM 6.3.5-9 */
43
+ #undef HAVE_CONVERTRGBTOHSL
40
44
  /* Introduced in IM 6.0.1 */
41
45
  #undef HAVE_CONVOLVEIMAGECHANNEL
42
46
  /* Introduced in IM 6.0.0 */
@@ -1,4 +1,4 @@
1
- /* $Id: rmutil.c,v 1.90.2.3 2007/06/09 16:45:52 rmagick Exp $ */
1
+ /* $Id: rmutil.c,v 1.90.2.3.2.1 2007/09/16 21:38:42 rmagick Exp $ */
2
2
  /*============================================================================\
3
3
  | Copyright (C) 2007 by Timothy P. Hunter
4
4
  | Name: rmutil.c
@@ -604,7 +604,12 @@ Pixel_to_HSL(VALUE self)
604
604
  volatile VALUE hsl;
605
605
 
606
606
  Data_Get_Struct(self, Pixel, pixel);
607
+
608
+ #if defined(HAVE_CONVERTRGBTOHSL)
609
+ ConvertRGBToHSL(pixel->red, pixel->green, pixel->blue, &hue, &saturation, &luminosity);
610
+ #else
607
611
  TransformHSL(pixel->red, pixel->green, pixel->blue, &hue, &saturation, &luminosity);
612
+ #endif
608
613
 
609
614
  hsl = rb_ary_new3(3, rb_float_new(hue), rb_float_new(saturation),
610
615
  rb_float_new(luminosity));
@@ -635,8 +640,14 @@ Pixel_from_HSL(VALUE class, VALUE hsl)
635
640
  saturation = NUM2DBL(rb_ary_entry(hsl, 1));
636
641
  luminosity = NUM2DBL(rb_ary_entry(hsl, 2));
637
642
 
643
+ #if defined(HAVE_CONVERTHSLTORGB)
644
+ ConvertHSLToRGB(hue, saturation, luminosity,
645
+ &rgb.red, &rgb.green, &rgb.blue);
646
+ #else
638
647
  HSLTransform(hue, saturation, luminosity,
639
648
  &rgb.red, &rgb.green, &rgb.blue);
649
+ #endif
650
+
640
651
  return Pixel_from_PixelPacket(&rgb);
641
652
  }
642
653
 
@@ -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.15.9"
4
+ s.version = "1.15.10"
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,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.2
2
+ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: rmagick
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.15.9
7
- date: 2007-08-08 00:00:00 -04:00
6
+ version: 1.15.10
7
+ date: 2007-09-16 00:00:00 -04: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
10
  - lib
@@ -30,359 +30,359 @@ post_install_message:
30
30
  authors:
31
31
  - Tim Hunter
32
32
  files:
33
+ - configure
34
+ - configure.ac
35
+ - README.html
36
+ - Makefile.in
37
+ - uninstall.rb
38
+ - rmagick.gemspec
39
+ - ChangeLog
40
+ - post-install.rb
41
+ - metaconfig.in
42
+ - post-clean.rb
43
+ - README-Mac-OSX.txt
44
+ - gem_extconf.rb
45
+ - lib
46
+ - lib/rvg
47
+ - lib/rvg/stretchable.rb
48
+ - lib/rvg/rvg.rb
49
+ - lib/rvg/deep_equal.rb
50
+ - lib/rvg/transformable.rb
51
+ - lib/rvg/embellishable.rb
52
+ - lib/rvg/describable.rb
53
+ - lib/rvg/units.rb
54
+ - lib/rvg/paint.rb
55
+ - lib/rvg/container.rb
56
+ - lib/rvg/clippath.rb
57
+ - lib/rvg/pathdata.rb
58
+ - lib/rvg/text.rb
59
+ - lib/rvg/stylable.rb
60
+ - lib/rvg/misc.rb
61
+ - lib/RMagick.rb
62
+ - setup.rb
63
+ - README.txt
64
+ - examples
65
+ - examples/spinner.rb
66
+ - examples/image_opacity.rb
67
+ - examples/vignette.rb
68
+ - examples/import_export.rb
69
+ - examples/demo.rb
70
+ - examples/histogram.rb
71
+ - examples/identify.rb
72
+ - examples/pattern_fill.rb
73
+ - examples/rotating_text.rb
74
+ - examples/find_similar_region.rb
75
+ - examples/thumbnail.rb
76
+ - examples/describe.rb
77
+ - post-setup.rb
78
+ - ext
79
+ - ext/RMagick
80
+ - ext/RMagick/extconf.rb.in
81
+ - ext/RMagick/rmagick.h
82
+ - ext/RMagick/rmutil.c
83
+ - ext/RMagick/MANIFEST
84
+ - ext/RMagick/rmilist.c
85
+ - ext/RMagick/rmdraw.c
86
+ - ext/RMagick/rmagick_config.h.in
87
+ - ext/RMagick/rmimage.c
88
+ - ext/RMagick/rmfill.c
89
+ - ext/RMagick/rmmain.c
90
+ - ext/RMagick/rminfo.c
33
91
  - doc
92
+ - doc/rvgstyle.html
93
+ - doc/rvguse.html
94
+ - doc/rvgxform.html
95
+ - doc/magick.html
96
+ - doc/rvg.html
97
+ - doc/struct.html
98
+ - doc/usage.html
34
99
  - doc/css
35
- - doc/css/popup.css
36
100
  - doc/css/doc.css
37
101
  - doc/css/ref.css
102
+ - doc/css/popup.css
103
+ - doc/constants.html
104
+ - doc/rvgpattern.html
105
+ - doc/image2.html
106
+ - doc/rvgtext.html
107
+ - doc/rvgshape.html
108
+ - doc/imusage.html
109
+ - doc/rvgtspan.html
110
+ - doc/info.html
111
+ - doc/rvgimage.html
112
+ - doc/index.html
113
+ - doc/image3.html
114
+ - doc/rvgclip.html
115
+ - doc/rvggroup.html
116
+ - doc/image1.html
117
+ - doc/optequiv.html
118
+ - doc/rvgtut.html
38
119
  - doc/ex
39
- - doc/ex/images
40
- - doc/ex/images/Ballerina.jpg
41
- - doc/ex/images/Ballerina3.jpg
42
- - doc/ex/images/Button_0.gif
43
- - doc/ex/images/Button_1.gif
44
- - doc/ex/images/Button_2.gif
45
- - doc/ex/images/Button_3.gif
46
- - doc/ex/images/Button_4.gif
47
- - doc/ex/images/Button_5.gif
48
- - doc/ex/images/Button_6.gif
49
- - doc/ex/images/Button_7.gif
50
- - doc/ex/images/Button_8.gif
51
- - doc/ex/images/Button_9.gif
52
- - doc/ex/images/Button_A.gif
53
- - doc/ex/images/Button_B.gif
54
- - doc/ex/images/Button_C.gif
55
- - doc/ex/images/Button_D.gif
56
- - doc/ex/images/Button_E.gif
57
- - doc/ex/images/Button_F.gif
58
- - doc/ex/images/Button_G.gif
59
- - doc/ex/images/Button_H.gif
60
- - doc/ex/images/Button_I.gif
61
- - doc/ex/images/Button_J.gif
62
- - doc/ex/images/Button_K.gif
63
- - doc/ex/images/Button_L.gif
64
- - doc/ex/images/Button_M.gif
65
- - doc/ex/images/Button_N.gif
66
- - doc/ex/images/Button_O.gif
67
- - doc/ex/images/Button_P.gif
68
- - doc/ex/images/Button_Q.gif
69
- - doc/ex/images/Button_R.gif
70
- - doc/ex/images/Button_S.gif
71
- - doc/ex/images/Button_T.gif
72
- - doc/ex/images/Button_U.gif
73
- - doc/ex/images/Button_V.gif
74
- - doc/ex/images/Button_W.gif
75
- - doc/ex/images/Button_X.gif
76
- - doc/ex/images/Button_Y.gif
77
- - doc/ex/images/Button_Z.gif
78
- - doc/ex/images/Cheetah.jpg
79
- - doc/ex/images/Coffee.wmf
80
- - doc/ex/images/Flower_Hat.jpg
81
- - doc/ex/images/Gold_Statue.jpg
82
- - doc/ex/images/Hot_Air_Balloons.jpg
83
- - doc/ex/images/Hot_Air_Balloons_H.jpg
84
- - doc/ex/images/No.wmf
85
- - doc/ex/images/Polynesia.jpg
86
- - doc/ex/images/Red_Rocks.jpg
87
- - doc/ex/images/Shorts.jpg
88
- - doc/ex/images/Snake.wmf
89
- - doc/ex/images/Violin.jpg
90
- - doc/ex/images/big-duck.gif
91
- - doc/ex/images/duck.gif
92
- - doc/ex/images/duck0.gif
93
- - doc/ex/images/duck1.gif
94
- - doc/ex/images/duck10.gif
95
- - doc/ex/images/duck11.gif
96
- - doc/ex/images/duck12.gif
97
- - doc/ex/images/duck13.gif
98
- - doc/ex/images/duck14.gif
99
- - doc/ex/images/duck15.gif
100
- - doc/ex/images/duck2.gif
101
- - doc/ex/images/duck3.gif
102
- - doc/ex/images/duck4.gif
103
- - doc/ex/images/duck5.gif
104
- - doc/ex/images/duck6.gif
105
- - doc/ex/images/duck7.gif
106
- - doc/ex/images/duck8.gif
107
- - doc/ex/images/duck9.gif
108
- - doc/ex/images/graydient230x6.gif
109
- - doc/ex/images/logo400x83.gif
110
- - doc/ex/images/model.miff
111
- - doc/ex/images/notimplemented.gif
112
- - doc/ex/images/smile.miff
113
- - doc/ex/images/spin.gif
114
- - doc/ex/Adispatch.rb
120
+ - doc/ex/path.rb
121
+ - doc/ex/cbezier5.rb
122
+ - doc/ex/texture_floodfill.rb
123
+ - doc/ex/transparent.rb
124
+ - doc/ex/composite.rb
115
125
  - doc/ex/InitialCoords.rb
116
- - doc/ex/NewCoordSys.rb
117
- - doc/ex/OrigCoordSys.rb
118
- - doc/ex/PreserveAspectRatio.rb
119
- - doc/ex/RotateScale.rb
120
- - doc/ex/Skew.rb
121
126
  - doc/ex/Use01.rb
122
- - doc/ex/Use02.rb
123
- - doc/ex/Use03.rb
124
- - doc/ex/ViewBox.rb
125
- - doc/ex/Zconstitute.rb
126
- - doc/ex/adaptive_threshold.rb
127
- - doc/ex/add_noise.rb
128
- - doc/ex/affine.rb
129
- - doc/ex/affine_transform.rb
130
- - doc/ex/arc.rb
131
- - doc/ex/arcpath.rb
132
- - doc/ex/arcs01.rb
133
- - doc/ex/arcs02.rb
134
- - doc/ex/average.rb
135
- - doc/ex/axes.rb
127
+ - doc/ex/tref01.rb
136
128
  - doc/ex/baseline_shift01.rb
137
- - doc/ex/bilevel_channel.rb
138
- - doc/ex/blur_image.rb
139
- - doc/ex/border.rb
140
- - doc/ex/bounding_box.rb
141
- - doc/ex/cbezier1.rb
142
- - doc/ex/cbezier2.rb
143
- - doc/ex/cbezier3.rb
144
- - doc/ex/cbezier4.rb
145
- - doc/ex/cbezier5.rb
146
- - doc/ex/cbezier6.rb
147
- - doc/ex/channel.rb
148
- - doc/ex/charcoal.rb
149
- - doc/ex/chop.rb
150
- - doc/ex/circle.rb
151
- - doc/ex/circle01.rb
152
- - doc/ex/clip_path.rb
153
- - doc/ex/coalesce.rb
154
- - doc/ex/color_fill_to_border.rb
155
- - doc/ex/color_floodfill.rb
156
- - doc/ex/color_histogram.rb
157
- - doc/ex/color_reset.rb
158
- - doc/ex/colorize.rb
159
- - doc/ex/colors.rb
160
- - doc/ex/composite.rb
161
- - doc/ex/contrast.rb
162
- - doc/ex/crop.rb
163
- - doc/ex/crop_resized.rb
164
- - doc/ex/crop_with_gravity.rb
165
- - doc/ex/cubic01.rb
129
+ - doc/ex/texture_fill_to_border.rb
130
+ - doc/ex/stegano.rb
131
+ - doc/ex/roundrect.rb
132
+ - doc/ex/wet_floor.rb
133
+ - doc/ex/Use02.rb
134
+ - doc/ex/nonzero.rb
135
+ - doc/ex/watermark.rb
136
+ - doc/ex/rectangle.rb
137
+ - doc/ex/text_styles.rb
138
+ - doc/ex/to_blob.rb
139
+ - doc/ex/opacity.rb
140
+ - doc/ex/shear.rb
141
+ - doc/ex/transverse.rb
142
+ - doc/ex/text_undercolor.rb
143
+ - doc/ex/segment.rb
144
+ - doc/ex/OrigCoordSys.rb
166
145
  - doc/ex/cubic02.rb
167
- - doc/ex/cycle_colormap.rb
168
- - doc/ex/dissolve.rb
169
- - doc/ex/drawcomp.rb
170
- - doc/ex/drop_shadow.rb
171
- - doc/ex/edge.rb
172
- - doc/ex/ellipse.rb
173
- - doc/ex/ellipse01.rb
174
- - doc/ex/emboss.rb
146
+ - doc/ex/tspan02.rb
147
+ - doc/ex/implode.rb
148
+ - doc/ex/map_f.rb
149
+ - doc/ex/morph.rb
150
+ - doc/ex/flatten_images.rb
151
+ - doc/ex/tspan01.rb
175
152
  - doc/ex/enhance.rb
153
+ - doc/ex/colors.rb
154
+ - doc/ex/Adispatch.rb
155
+ - doc/ex/translate.rb
156
+ - doc/ex/quantize-m.rb
157
+ - doc/ex/crop.rb
158
+ - doc/ex/text01.rb
159
+ - doc/ex/polyline.rb
160
+ - doc/ex/get_pixels.rb
161
+ - doc/ex/map.rb
176
162
  - doc/ex/equalize.rb
177
- - doc/ex/evenodd.rb
178
- - doc/ex/flatten_images.rb
179
- - doc/ex/flip.rb
180
- - doc/ex/flop.rb
181
- - doc/ex/font_styles.rb
182
- - doc/ex/fonts.rb
183
- - doc/ex/frame.rb
184
- - doc/ex/gaussian_blur.rb
185
- - doc/ex/get_multiline_type_metrics.rb
186
- - doc/ex/get_pixels.rb
187
- - doc/ex/get_type_metrics.rb
188
- - doc/ex/gradientfill.rb
189
- - doc/ex/grav.rb
190
- - doc/ex/gravity.rb
191
- - doc/ex/group.rb
192
- - doc/ex/hatchfill.rb
193
- - doc/ex/image.rb
194
- - doc/ex/implode.rb
195
- - doc/ex/level.rb
163
+ - doc/ex/rvg_opacity.rb
164
+ - doc/ex/rect02.rb
165
+ - doc/ex/roll.rb
166
+ - doc/ex/drawcomp.rb
167
+ - doc/ex/RotateScale.rb
168
+ - doc/ex/text_align.rb
169
+ - doc/ex/charcoal.rb
170
+ - doc/ex/writing_mode02.rb
171
+ - doc/ex/polyline01.rb
172
+ - doc/ex/spread.rb
173
+ - doc/ex/PreserveAspectRatio.rb
174
+ - doc/ex/rotate_f.rb
175
+ - doc/ex/shade.rb
176
+ - doc/ex/random_threshold_channel.rb
177
+ - doc/ex/color_floodfill.rb
178
+ - doc/ex/normalize.rb
179
+ - doc/ex/splice.rb
180
+ - doc/ex/colorize.rb
181
+ - doc/ex/axes.rb
182
+ - doc/ex/vignette.rb
183
+ - doc/ex/ellipse01.rb
184
+ - doc/ex/solarize.rb
185
+ - doc/ex/rect01.rb
196
186
  - doc/ex/line.rb
197
- - doc/ex/line01.rb
198
- - doc/ex/map.rb
199
- - doc/ex/map_f.rb
200
- - doc/ex/mask.rb
201
- - doc/ex/matte_fill_to_border.rb
202
- - doc/ex/matte_floodfill.rb
203
- - doc/ex/matte_replace.rb
204
- - doc/ex/median_filter.rb
205
- - doc/ex/modulate.rb
187
+ - doc/ex/writing_mode01.rb
206
188
  - doc/ex/mono.rb
207
- - doc/ex/morph.rb
208
189
  - doc/ex/mosaic.rb
209
- - doc/ex/motion_blur.rb
190
+ - doc/ex/level.rb
191
+ - doc/ex/color_fill_to_border.rb
192
+ - doc/ex/wave.rb
193
+ - doc/ex/shave.rb
194
+ - doc/ex/pattern2.rb
195
+ - doc/ex/bounding_box.rb
196
+ - doc/ex/rvg_clippath.rb
197
+ - doc/ex/median_filter.rb
198
+ - doc/ex/arcs01.rb
199
+ - doc/ex/stroke_dasharray.rb
200
+ - doc/ex/trim.rb
201
+ - doc/ex/blur_image.rb
202
+ - doc/ex/Use03.rb
203
+ - doc/ex/text_antialias.rb
204
+ - doc/ex/sepiatone.rb
210
205
  - doc/ex/negate.rb
206
+ - doc/ex/channel.rb
211
207
  - doc/ex/negate_channel.rb
212
- - doc/ex/nested_rvg.rb
213
- - doc/ex/nonzero.rb
214
- - doc/ex/normalize.rb
215
- - doc/ex/oil_paint.rb
216
- - doc/ex/opacity.rb
217
- - doc/ex/ordered_dither.rb
218
- - doc/ex/path.rb
219
- - doc/ex/pattern1.rb
220
- - doc/ex/pattern2.rb
221
- - doc/ex/polaroid.rb
222
- - doc/ex/polygon.rb
223
- - doc/ex/polygon01.rb
224
- - doc/ex/polyline.rb
225
- - doc/ex/polyline01.rb
226
- - doc/ex/posterize.rb
227
- - doc/ex/preview.rb
228
- - doc/ex/qbezierpath.rb
229
- - doc/ex/quad01.rb
230
- - doc/ex/quantize-m.rb
231
- - doc/ex/radial_blur.rb
232
- - doc/ex/raise.rb
233
- - doc/ex/random_threshold_channel.rb
234
- - doc/ex/rect01.rb
235
- - doc/ex/rect02.rb
236
- - doc/ex/rectangle.rb
208
+ - doc/ex/drop_shadow.rb
237
209
  - doc/ex/reduce_noise.rb
238
- - doc/ex/roll.rb
210
+ - doc/ex/emboss.rb
211
+ - doc/ex/unsharp_mask.rb
212
+ - doc/ex/contrast.rb
213
+ - doc/ex/triangle01.rb
214
+ - doc/ex/texturefill.rb
215
+ - doc/ex/image.rb
216
+ - doc/ex/radial_blur.rb
239
217
  - doc/ex/rotate.rb
240
- - doc/ex/rotate_f.rb
241
- - doc/ex/roundrect.rb
242
- - doc/ex/rubyname.rb
243
- - doc/ex/rvg_clippath.rb
244
- - doc/ex/rvg_linecap.rb
218
+ - doc/ex/polaroid.rb
219
+ - doc/ex/smile.rb
220
+ - doc/ex/fonts.rb
221
+ - doc/ex/stroke_fill.rb
222
+ - doc/ex/adaptive_threshold.rb
223
+ - doc/ex/quad01.rb
224
+ - doc/ex/affine.rb
225
+ - doc/ex/frame.rb
226
+ - doc/ex/polygon.rb
227
+ - doc/ex/transpose.rb
245
228
  - doc/ex/rvg_linejoin.rb
246
- - doc/ex/rvg_opacity.rb
247
- - doc/ex/rvg_pattern.rb
248
- - doc/ex/rvg_stroke_dasharray.rb
249
- - doc/ex/segment.rb
250
- - doc/ex/sepiatone.rb
251
- - doc/ex/shade.rb
252
- - doc/ex/shadow.rb
253
- - doc/ex/shave.rb
254
- - doc/ex/shear.rb
255
- - doc/ex/sketch.rb
229
+ - doc/ex/arcpath.rb
230
+ - doc/ex/color_histogram.rb
231
+ - doc/ex/bilevel_channel.rb
232
+ - doc/ex/chop.rb
233
+ - doc/ex/cubic01.rb
234
+ - doc/ex/cbezier1.rb
256
235
  - doc/ex/skewx.rb
257
236
  - doc/ex/skewy.rb
258
- - doc/ex/smile.rb
259
- - doc/ex/solarize.rb
260
- - doc/ex/splice.rb
261
- - doc/ex/spread.rb
262
- - doc/ex/stegano.rb
263
- - doc/ex/stroke_dasharray.rb
264
- - doc/ex/stroke_fill.rb
265
- - doc/ex/stroke_linecap.rb
237
+ - doc/ex/tspan03.rb
238
+ - doc/ex/oil_paint.rb
239
+ - doc/ex/cbezier2.rb
240
+ - doc/ex/group.rb
241
+ - doc/ex/hatchfill.rb
242
+ - doc/ex/dissolve.rb
243
+ - doc/ex/ordered_dither.rb
244
+ - doc/ex/gaussian_blur.rb
245
+ - doc/ex/coalesce.rb
246
+ - doc/ex/flip.rb
247
+ - doc/ex/font_styles.rb
248
+ - doc/ex/threshold.rb
249
+ - doc/ex/pattern1.rb
250
+ - doc/ex/ellipse.rb
251
+ - doc/ex/cbezier3.rb
252
+ - doc/ex/preview.rb
253
+ - doc/ex/crop_resized.rb
254
+ - doc/ex/shadow.rb
255
+ - doc/ex/arcs02.rb
256
+ - doc/ex/affine_transform.rb
257
+ - doc/ex/cbezier4.rb
258
+ - doc/ex/flop.rb
259
+ - doc/ex/average.rb
260
+ - doc/ex/matte_floodfill.rb
266
261
  - doc/ex/stroke_linejoin.rb
262
+ - doc/ex/cbezier6.rb
263
+ - doc/ex/circle.rb
264
+ - doc/ex/modulate.rb
265
+ - doc/ex/edge.rb
266
+ - doc/ex/get_multiline_type_metrics.rb
267
+ - doc/ex/Zconstitute.rb
268
+ - doc/ex/NewCoordSys.rb
269
+ - doc/ex/matte_replace.rb
270
+ - doc/ex/polygon01.rb
267
271
  - doc/ex/stroke_width.rb
268
- - doc/ex/swirl.rb
272
+ - doc/ex/cycle_colormap.rb
273
+ - doc/ex/nested_rvg.rb
274
+ - doc/ex/circle01.rb
275
+ - doc/ex/sketch.rb
276
+ - doc/ex/gravity.rb
269
277
  - doc/ex/text.rb
270
- - doc/ex/text01.rb
271
- - doc/ex/text_align.rb
272
- - doc/ex/text_antialias.rb
273
- - doc/ex/text_styles.rb
274
- - doc/ex/text_undercolor.rb
275
- - doc/ex/texture_fill_to_border.rb
276
- - doc/ex/texture_floodfill.rb
277
- - doc/ex/texturefill.rb
278
- - doc/ex/threshold.rb
279
- - doc/ex/to_blob.rb
280
- - doc/ex/translate.rb
281
- - doc/ex/transparent.rb
282
- - doc/ex/transpose.rb
283
- - doc/ex/transverse.rb
284
- - doc/ex/tref01.rb
285
- - doc/ex/triangle01.rb
286
- - doc/ex/trim.rb
287
- - doc/ex/tspan01.rb
288
- - doc/ex/tspan02.rb
289
- - doc/ex/tspan03.rb
290
- - doc/ex/unsharp_mask.rb
278
+ - doc/ex/mask.rb
279
+ - doc/ex/raise.rb
280
+ - doc/ex/border.rb
281
+ - doc/ex/get_type_metrics.rb
282
+ - doc/ex/qbezierpath.rb
283
+ - doc/ex/swirl.rb
284
+ - doc/ex/line01.rb
291
285
  - doc/ex/viewex.rb
292
- - doc/ex/vignette.rb
293
- - doc/ex/watermark.rb
294
- - doc/ex/wave.rb
295
- - doc/ex/wet_floor.rb
296
- - doc/ex/writing_mode01.rb
297
- - doc/ex/writing_mode02.rb
286
+ - doc/ex/motion_blur.rb
287
+ - doc/ex/images
288
+ - doc/ex/images/duck8.gif
289
+ - doc/ex/images/Button_J.gif
290
+ - doc/ex/images/Button_6.gif
291
+ - doc/ex/images/Button_F.gif
292
+ - doc/ex/images/Button_D.gif
293
+ - doc/ex/images/Button_Y.gif
294
+ - doc/ex/images/Button_Q.gif
295
+ - doc/ex/images/Polynesia.jpg
296
+ - doc/ex/images/Button_X.gif
297
+ - doc/ex/images/Button_5.gif
298
+ - doc/ex/images/model.miff
299
+ - doc/ex/images/Hot_Air_Balloons_H.jpg
300
+ - doc/ex/images/Flower_Hat.jpg
301
+ - doc/ex/images/Shorts.jpg
302
+ - doc/ex/images/Button_1.gif
303
+ - doc/ex/images/Button_G.gif
304
+ - doc/ex/images/Button_B.gif
305
+ - doc/ex/images/Ballerina.jpg
306
+ - doc/ex/images/spin.gif
307
+ - doc/ex/images/Button_N.gif
308
+ - doc/ex/images/Button_R.gif
309
+ - doc/ex/images/Button_P.gif
310
+ - doc/ex/images/duck0.gif
311
+ - doc/ex/images/graydient230x6.gif
312
+ - doc/ex/images/Button_E.gif
313
+ - doc/ex/images/Button_0.gif
314
+ - doc/ex/images/Cheetah.jpg
315
+ - doc/ex/images/Button_S.gif
316
+ - doc/ex/images/duck.gif
317
+ - doc/ex/images/Button_A.gif
318
+ - doc/ex/images/Button_H.gif
319
+ - doc/ex/images/duck12.gif
320
+ - doc/ex/images/notimplemented.gif
321
+ - doc/ex/images/Button_Z.gif
322
+ - doc/ex/images/Button_2.gif
323
+ - doc/ex/images/Button_8.gif
324
+ - doc/ex/images/No.wmf
325
+ - doc/ex/images/Button_L.gif
326
+ - doc/ex/images/Violin.jpg
327
+ - doc/ex/images/Button_U.gif
328
+ - doc/ex/images/Ballerina3.jpg
329
+ - doc/ex/images/Button_O.gif
330
+ - doc/ex/images/duck7.gif
331
+ - doc/ex/images/Red_Rocks.jpg
332
+ - doc/ex/images/duck11.gif
333
+ - doc/ex/images/duck2.gif
334
+ - doc/ex/images/Button_9.gif
335
+ - doc/ex/images/duck13.gif
336
+ - doc/ex/images/Coffee.wmf
337
+ - doc/ex/images/smile.miff
338
+ - doc/ex/images/Button_K.gif
339
+ - doc/ex/images/Button_W.gif
340
+ - doc/ex/images/duck3.gif
341
+ - doc/ex/images/Button_7.gif
342
+ - doc/ex/images/Button_V.gif
343
+ - doc/ex/images/duck5.gif
344
+ - doc/ex/images/Button_C.gif
345
+ - doc/ex/images/Button_4.gif
346
+ - doc/ex/images/duck1.gif
347
+ - doc/ex/images/Snake.wmf
348
+ - doc/ex/images/logo400x83.gif
349
+ - doc/ex/images/Button_T.gif
350
+ - doc/ex/images/Hot_Air_Balloons.jpg
351
+ - doc/ex/images/duck4.gif
352
+ - doc/ex/images/big-duck.gif
353
+ - doc/ex/images/Button_M.gif
354
+ - doc/ex/images/duck14.gif
355
+ - doc/ex/images/duck9.gif
356
+ - doc/ex/images/duck10.gif
357
+ - doc/ex/images/Button_3.gif
358
+ - doc/ex/images/duck15.gif
359
+ - doc/ex/images/duck6.gif
360
+ - doc/ex/images/Button_I.gif
361
+ - doc/ex/images/Gold_Statue.jpg
362
+ - doc/ex/arc.rb
363
+ - doc/ex/stroke_linecap.rb
364
+ - doc/ex/rvg_stroke_dasharray.rb
365
+ - doc/ex/gradientfill.rb
366
+ - doc/ex/matte_fill_to_border.rb
367
+ - doc/ex/rvg_pattern.rb
368
+ - doc/ex/rvg_linecap.rb
369
+ - doc/ex/crop_with_gravity.rb
370
+ - doc/ex/posterize.rb
371
+ - doc/ex/add_noise.rb
372
+ - doc/ex/evenodd.rb
373
+ - doc/ex/ViewBox.rb
374
+ - doc/ex/Skew.rb
375
+ - doc/ex/grav.rb
376
+ - doc/ex/clip_path.rb
377
+ - doc/ex/rubyname.rb
378
+ - doc/ex/color_reset.rb
298
379
  - doc/comtasks.html
299
- - doc/constants.html
300
- - doc/draw.html
301
- - doc/ilist.html
302
- - doc/image1.html
303
- - doc/image2.html
304
- - doc/image3.html
305
380
  - doc/imageattrs.html
306
- - doc/imusage.html
307
- - doc/index.html
308
- - doc/info.html
309
- - doc/magick.html
310
- - doc/optequiv.html
311
- - doc/rvg.html
312
- - doc/rvgclip.html
313
- - doc/rvggroup.html
314
- - doc/rvgimage.html
315
- - doc/rvgpattern.html
316
- - doc/rvgshape.html
317
- - doc/rvgstyle.html
318
- - doc/rvgtext.html
319
- - doc/rvgtspan.html
320
- - doc/rvgtut.html
321
- - doc/rvguse.html
322
- - doc/rvgxform.html
323
- - doc/struct.html
324
- - doc/usage.html
381
+ - doc/draw.html
325
382
  - doc/scripts
326
383
  - doc/scripts/doc.js
327
384
  - doc/scripts/stripeTables.js
328
- - ext
329
- - ext/RMagick
330
- - ext/RMagick/MANIFEST
331
- - ext/RMagick/extconf.rb.in
332
- - ext/RMagick/rmagick.h
333
- - ext/RMagick/rmagick_config.h.in
334
- - ext/RMagick/rmdraw.c
335
- - ext/RMagick/rmfill.c
336
- - ext/RMagick/rmilist.c
337
- - ext/RMagick/rmimage.c
338
- - ext/RMagick/rminfo.c
339
- - ext/RMagick/rmmain.c
340
- - ext/RMagick/rmutil.c
341
- - ChangeLog
342
- - Makefile.in
343
- - README-Mac-OSX.txt
344
- - README.txt
345
- - configure.ac
346
- - gem_extconf.rb
347
- - metaconfig.in
348
- - post-clean.rb
349
- - post-install.rb
350
- - post-setup.rb
351
- - rmagick.gemspec
352
- - setup.rb
353
- - uninstall.rb
354
- - examples
355
- - examples/describe.rb
356
- - examples/demo.rb
357
- - examples/find_similar_region.rb
358
- - examples/histogram.rb
359
- - examples/identify.rb
360
- - examples/image_opacity.rb
361
- - examples/import_export.rb
362
- - examples/pattern_fill.rb
363
- - examples/rotating_text.rb
364
- - examples/spinner.rb
365
- - examples/thumbnail.rb
366
- - examples/vignette.rb
367
- - lib
368
- - lib/rvg
369
- - lib/rvg/clippath.rb
370
- - lib/rvg/container.rb
371
- - lib/rvg/deep_equal.rb
372
- - lib/rvg/describable.rb
373
- - lib/rvg/embellishable.rb
374
- - lib/rvg/misc.rb
375
- - lib/rvg/paint.rb
376
- - lib/rvg/pathdata.rb
377
- - lib/rvg/rvg.rb
378
- - lib/rvg/stretchable.rb
379
- - lib/rvg/stylable.rb
380
- - lib/rvg/text.rb
381
- - lib/rvg/transformable.rb
382
- - lib/rvg/units.rb
383
- - lib/RMagick.rb
384
- - README.html
385
- - configure
385
+ - doc/ilist.html
386
386
  test_files: []
387
387
 
388
388
  rdoc_options: []