rmagick 1.7.4 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rmagick might be problematic. Click here for more details.
- data/ChangeLog +10 -2
- data/README.html +284 -290
- data/README.txt +298 -307
- data/configure +180 -11
- data/configure.ac +18 -2
- data/doc/comtasks.html +1 -1
- data/doc/constants.html +15 -10
- data/doc/css/ref.css +67 -0
- data/doc/draw.html +1 -1
- data/doc/ex/InitialCoords.rb +24 -0
- data/doc/ex/NewCoordSys.rb +33 -0
- data/doc/ex/OrigCoordSys.rb +19 -0
- data/doc/ex/PreserveAspectRatio.rb +206 -0
- data/doc/ex/RotateScale.rb +38 -0
- data/doc/ex/Skew.rb +39 -0
- data/doc/ex/Use01.rb +17 -0
- data/doc/ex/Use02.rb +22 -0
- data/doc/ex/Use03.rb +17 -0
- data/doc/ex/ViewBox.rb +34 -0
- data/doc/ex/arcs01.rb +29 -0
- data/doc/ex/arcs02.rb +62 -0
- data/doc/ex/baseline_shift01.rb +19 -0
- data/doc/ex/bounding_box.rb +31 -37
- data/doc/ex/circle01.rb +18 -0
- data/doc/ex/cubic01.rb +46 -0
- data/doc/ex/cubic02.rb +95 -0
- data/doc/ex/drop_shadow.rb +1 -1
- data/doc/ex/ellipse01.rb +23 -0
- data/doc/ex/evenodd.rb +44 -0
- data/doc/ex/font_styles.rb +29 -0
- data/doc/ex/group.rb +27 -0
- data/doc/ex/image.rb +47 -0
- data/doc/ex/images/big-duck.gif +0 -0
- data/doc/ex/images/duck.gif +0 -0
- data/doc/ex/images/duck0.gif +0 -0
- data/doc/ex/images/duck1.gif +0 -0
- data/doc/ex/images/duck10.gif +0 -0
- data/doc/ex/images/duck11.gif +0 -0
- data/doc/ex/images/duck12.gif +0 -0
- data/doc/ex/images/duck13.gif +0 -0
- data/doc/ex/images/duck14.gif +0 -0
- data/doc/ex/images/duck15.gif +0 -0
- data/doc/ex/images/duck2.gif +0 -0
- data/doc/ex/images/duck3.gif +0 -0
- data/doc/ex/images/duck4.gif +0 -0
- data/doc/ex/images/duck5.gif +0 -0
- data/doc/ex/images/duck6.gif +0 -0
- data/doc/ex/images/duck7.gif +0 -0
- data/doc/ex/images/duck8.gif +0 -0
- data/doc/ex/images/duck9.gif +0 -0
- data/doc/ex/line01.rb +24 -0
- data/doc/ex/nested_rvg.rb +22 -0
- data/doc/ex/nonzero.rb +44 -0
- data/doc/ex/polygon01.rb +24 -0
- data/doc/ex/polyline01.rb +24 -0
- data/doc/ex/quad01.rb +37 -0
- data/doc/ex/rect01.rb +16 -0
- data/doc/ex/rect02.rb +23 -0
- data/doc/ex/rvg_clippath.rb +15 -0
- data/doc/ex/rvg_linecap.rb +44 -0
- data/doc/ex/rvg_linejoin.rb +42 -0
- data/doc/ex/rvg_opacity.rb +20 -0
- data/doc/ex/rvg_pattern.rb +27 -0
- data/doc/ex/rvg_stroke_dasharray.rb +13 -0
- data/doc/ex/sepiatone.rb +15 -0
- data/doc/ex/shadow.rb +37 -0
- data/doc/ex/smile.rb +9 -9
- data/doc/ex/stroke_fill.rb +12 -0
- data/doc/ex/text01.rb +18 -0
- data/doc/ex/text_styles.rb +22 -0
- data/doc/ex/texture_fill_to_border.rb +3 -3
- data/doc/ex/texture_floodfill.rb +3 -2
- data/doc/ex/tref01.rb +26 -0
- data/doc/ex/triangle01.rb +17 -0
- data/doc/ex/tspan01.rb +19 -0
- data/doc/ex/tspan02.rb +20 -0
- data/doc/ex/tspan03.rb +22 -0
- data/doc/ex/writing_mode01.rb +28 -0
- data/doc/ex/writing_mode02.rb +27 -0
- data/doc/ilist.html +1 -1
- data/doc/image1.html +66 -30
- data/doc/image2.html +1 -1
- data/doc/image3.html +274 -49
- data/doc/imageattrs.html +87 -10
- data/doc/imusage.html +1 -1
- data/doc/index.html +80 -39
- data/doc/info.html +149 -13
- data/doc/magick.html +1 -1
- data/doc/rvg.html +890 -0
- data/doc/rvgclip.html +249 -0
- data/doc/rvggroup.html +305 -0
- data/doc/rvgimage.html +288 -0
- data/doc/rvgpattern.html +456 -0
- data/doc/rvgshape.html +376 -0
- data/doc/rvgstyle.html +269 -0
- data/doc/rvgtext.html +464 -0
- data/doc/rvgtspan.html +237 -0
- data/doc/rvgtut.html +512 -0
- data/doc/rvguse.html +145 -0
- data/doc/rvgxform.html +294 -0
- data/doc/struct.html +9 -71
- data/doc/usage.html +22 -7
- data/ext/RMagick/MANIFEST +94 -2
- data/ext/RMagick/rmagick.h +10 -4
- data/ext/RMagick/rmagick_config.h.in +8 -2
- data/ext/RMagick/rmdraw.c +2 -2
- data/ext/RMagick/rmfill.c +2 -2
- data/ext/RMagick/rmilist.c +3 -3
- data/ext/RMagick/rmimage.c +152 -5
- data/ext/RMagick/rminfo.c +208 -2
- data/ext/RMagick/rmmain.c +14 -5
- data/ext/RMagick/rmutil.c +83 -22
- data/lib/RMagick.rb +2 -2
- data/lib/rvg/clippath.rb +46 -0
- data/lib/rvg/container.rb +129 -0
- data/lib/rvg/deep_equal.rb +54 -0
- data/lib/rvg/describable.rb +51 -0
- data/lib/rvg/embellishable.rb +395 -0
- data/lib/rvg/misc.rb +729 -0
- data/lib/rvg/paint.rb +48 -0
- data/lib/rvg/pathdata.rb +129 -0
- data/lib/rvg/rvg.rb +279 -0
- data/lib/rvg/stretchable.rb +150 -0
- data/lib/rvg/stylable.rb +116 -0
- data/lib/rvg/text.rb +185 -0
- data/lib/rvg/transformable.rb +131 -0
- data/lib/rvg/units.rb +64 -0
- data/rmagick.gemspec +1 -1
- data/uninstall.rb +3 -2
- metadata +96 -3
@@ -0,0 +1,131 @@
|
|
1
|
+
#--
|
2
|
+
# $Id: transformable.rb,v 1.1 2005/03/12 17:02:00 rmagick Exp $
|
3
|
+
# Copyright (C) 2005 Timothy P. Hunter
|
4
|
+
#++
|
5
|
+
|
6
|
+
class Magick::RVG
|
7
|
+
|
8
|
+
# Transforms is an Array with a deep_copy method.
|
9
|
+
# During unit-testing it also has a deep_equal method.
|
10
|
+
class Transforms < Array #:nodoc:
|
11
|
+
|
12
|
+
def deep_copy(h=nil)
|
13
|
+
copy = self.class.new
|
14
|
+
each { |transform| copy << [transform[0], transform[1].dup] }
|
15
|
+
return copy
|
16
|
+
end
|
17
|
+
|
18
|
+
end # class Transform
|
19
|
+
|
20
|
+
# Transformations are operations on the coordinate system.
|
21
|
+
# All the transformations defined within a container (an RVG object
|
22
|
+
# or a group) are applied before drawing any shapes or text.
|
23
|
+
# All transformations are applied in the order they were
|
24
|
+
# defined. <em>Note:</em> This means that
|
25
|
+
# g.translate(10,20).scale(2)
|
26
|
+
# is not the same as
|
27
|
+
# g.scale(2).translate(10,20)
|
28
|
+
module Transformable
|
29
|
+
|
30
|
+
private
|
31
|
+
|
32
|
+
# Apply transforms in the same order they were specified!
|
33
|
+
def add_transform_primitives(gc)
|
34
|
+
@transforms.each { |transform| gc.__send__(transform[0], *transform[1]) }
|
35
|
+
end
|
36
|
+
|
37
|
+
def initialize(*args, &block)
|
38
|
+
super()
|
39
|
+
@transforms = Transforms.new
|
40
|
+
end
|
41
|
+
|
42
|
+
public
|
43
|
+
|
44
|
+
# Applies the transformation matrix [sx, rx, ry, sy, tx, ty]
|
45
|
+
def matrix(sx, rx, ry, sy, tx, ty)
|
46
|
+
begin
|
47
|
+
@transforms << [:affine, [Float(sx), Float(rx), Float(ry), Float(sy), Float(tx), Float(ty)]]
|
48
|
+
rescue ArgumentError
|
49
|
+
raise ArgumentError, "arguments must be convertable to float (got #{sx.class}, #{rx.class}, #{ry.class}, #{sy.class}, #{sx.class}, #{sx.class}, #{tx.class}, #{ty.class})"
|
50
|
+
end
|
51
|
+
yield(self) if block_given?
|
52
|
+
self
|
53
|
+
end
|
54
|
+
|
55
|
+
# Add <tt>tx</tt> to all x-coordinates and <tt>ty</tt>
|
56
|
+
# to all y-coordinates. If <tt>ty</tt> is omitted it defaults
|
57
|
+
# to <tt>tx</tt>.
|
58
|
+
def translate(tx, ty=nil)
|
59
|
+
ty ||= tx
|
60
|
+
begin
|
61
|
+
@transforms << [:translate, [Float(tx), Float(ty)]]
|
62
|
+
rescue ArgumentError
|
63
|
+
raise ArgumentError, "arguments must be convertable to float (got #{tx.class}, #{ty.class})"
|
64
|
+
end
|
65
|
+
yield(self) if block_given?
|
66
|
+
self
|
67
|
+
end
|
68
|
+
|
69
|
+
# Multiply the x-coordinates by <tt>sx</tt> and the y-coordinates
|
70
|
+
# by <tt>sy</tt>. If <tt>sy</tt> is omitted it defaults to <tt>sx</tt>.
|
71
|
+
def scale(sx, sy=nil)
|
72
|
+
sy ||= sx
|
73
|
+
begin
|
74
|
+
@transforms << [:scale, [Float(sx), Float(sy)]]
|
75
|
+
rescue ArgumentError
|
76
|
+
raise ArgumentError, "arguments must be convertable to float (got #{sx.class}, #{sy.class})"
|
77
|
+
end
|
78
|
+
yield(self) if block_given?
|
79
|
+
self
|
80
|
+
end
|
81
|
+
|
82
|
+
# This method can take either of two argument lists:
|
83
|
+
# [rotate(angle)] rotate by <tt>angle</tt> degrees
|
84
|
+
# [rotate(angle, cx, cy)] rotate by <tt>angle</tt> degrees about
|
85
|
+
# the point [<tt>cx</tt>, <tt>cy</tt>].
|
86
|
+
def rotate(angle, *args)
|
87
|
+
begin
|
88
|
+
case args.length
|
89
|
+
when 0
|
90
|
+
@transforms << [:rotate, [Float(angle)]]
|
91
|
+
when 2
|
92
|
+
cx, cy = Float(args[0]), Float(args[1])
|
93
|
+
@transforms << [:translate, [cx, cy]]
|
94
|
+
@transforms << [:rotate, [angle]]
|
95
|
+
@transforms << [:translate, [-cx, -cy]]
|
96
|
+
else
|
97
|
+
raise ArgumentError, "wrong number of arguments (#{args.length} for 1 or 3)"
|
98
|
+
end
|
99
|
+
rescue ArgumentError
|
100
|
+
raise ArgumentError, "arguments must be convertable to float (got #{[angle, *args].collect {|a| a.class}.join(', ')})"
|
101
|
+
end
|
102
|
+
yield(self) if block_given?
|
103
|
+
self
|
104
|
+
end
|
105
|
+
|
106
|
+
# Skew the X-axis by <tt>angle</tt> degrees.
|
107
|
+
def skewX(angle)
|
108
|
+
begin
|
109
|
+
@transforms << [:skewx, [Float(angle)]]
|
110
|
+
rescue ArgumentError
|
111
|
+
raise ArgumentError, "argument must be convertable to float (got #{angle.class})"
|
112
|
+
end
|
113
|
+
yield(self) if block_given?
|
114
|
+
self
|
115
|
+
end
|
116
|
+
|
117
|
+
# Skew the Y-axis by <tt>angle</tt> degrees.
|
118
|
+
def skewY(angle)
|
119
|
+
begin
|
120
|
+
@transforms << [:skewy, [Float(angle)]]
|
121
|
+
rescue ArgumentError
|
122
|
+
raise ArgumentError, "argument must be convertable to float (got #{angle.class})"
|
123
|
+
end
|
124
|
+
yield(self) if block_given?
|
125
|
+
self
|
126
|
+
end
|
127
|
+
|
128
|
+
end # module Transformable
|
129
|
+
|
130
|
+
end # class Magick::RVG
|
131
|
+
|
data/lib/rvg/units.rb
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
# $Id: units.rb,v 1.1 2005/03/12 17:02:00 rmagick Exp $
|
2
|
+
# Copyright (C) 2005 Timothy P. Hunter
|
3
|
+
class Magick::RVG
|
4
|
+
|
5
|
+
# Define RVG.dpi and RVG.dpi=. Add conversions to Fixnum and Float classes
|
6
|
+
class << self
|
7
|
+
attr_reader :dpi
|
8
|
+
def dpi=(n)
|
9
|
+
if !defined?(@dpi)
|
10
|
+
[Float, Fixnum].each do |c|
|
11
|
+
c.class_eval do
|
12
|
+
# the default measurement - 1px is 1 pixel
|
13
|
+
def px
|
14
|
+
self
|
15
|
+
end
|
16
|
+
# inches
|
17
|
+
def in
|
18
|
+
self * ::Magick::RVG.dpi
|
19
|
+
end
|
20
|
+
# millimeters
|
21
|
+
def mm
|
22
|
+
self * ::Magick::RVG.dpi / 25.4
|
23
|
+
end
|
24
|
+
# centimeters
|
25
|
+
def cm
|
26
|
+
self * ::Magick::RVG.dpi / 2.54
|
27
|
+
end
|
28
|
+
# points
|
29
|
+
def pt
|
30
|
+
self * ::Magick::RVG.dpi / 72.0
|
31
|
+
end
|
32
|
+
# picas
|
33
|
+
def pc
|
34
|
+
self * ::Magick::RVG.dpi / 6.0
|
35
|
+
end
|
36
|
+
# percentage of the argument
|
37
|
+
def pct(of)
|
38
|
+
self * Float(of) / 100.0
|
39
|
+
end
|
40
|
+
# the default is deg
|
41
|
+
def deg
|
42
|
+
self
|
43
|
+
end
|
44
|
+
# radians -> degrees
|
45
|
+
def rad
|
46
|
+
self * 180.0 / Math::PI
|
47
|
+
end
|
48
|
+
# grads -> degrees
|
49
|
+
def grad
|
50
|
+
self * 9.0 / 10.0
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
@dpi = Float(n)
|
57
|
+
return @dpi
|
58
|
+
rescue ArgumentError
|
59
|
+
raise TypeError, "Can't convert `#{n}' to Float"
|
60
|
+
end
|
61
|
+
end # class << self
|
62
|
+
|
63
|
+
end # class Magick::RVG
|
64
|
+
|
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.8.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
|
data/uninstall.rb
CHANGED
@@ -14,12 +14,12 @@ class Dir
|
|
14
14
|
end
|
15
15
|
|
16
16
|
# remove directory & contents if the directory was created by post-install.rb
|
17
|
-
def rmdir(dir)
|
17
|
+
def rmdir(dir, no_check=false)
|
18
18
|
# This can 't happen, but you can never be too safe...
|
19
19
|
if dir == '/' then
|
20
20
|
raise RuntimeError, "rm -rf /? I don't think so!"
|
21
21
|
end
|
22
|
-
if File.file?
|
22
|
+
if no_check || File.file?(dir+'/.rmagick') then
|
23
23
|
targets = Dir[dir+'/*']
|
24
24
|
targets += Dir[dir+'/.*'].delete_if { |f| FileTest.directory?(f) }
|
25
25
|
if not targets.empty?
|
@@ -62,6 +62,7 @@ doc_dir ||= prefix+'/share/RMagick'
|
|
62
62
|
File.safe_unlink("#{site_ruby}/RMagick.rb", true)
|
63
63
|
File.safe_unlink("#{so_dir}/RMagick.so", true)
|
64
64
|
|
65
|
+
rmdir("#{site_ruby}/rvg", true)
|
65
66
|
rmdir(doc_dir+'/ex/images')
|
66
67
|
rmdir(doc_dir+'/ex')
|
67
68
|
rmdir(doc_dir+'/css')
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.3
|
|
3
3
|
specification_version: 1
|
4
4
|
name: rmagick
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.
|
7
|
-
date: 2005-04-
|
6
|
+
version: 1.8.0
|
7
|
+
date: 2005-04-30
|
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
|
@@ -32,7 +32,6 @@ files:
|
|
32
32
|
- ext
|
33
33
|
- ChangeLog
|
34
34
|
- Makefile.in
|
35
|
-
- README.html
|
36
35
|
- README.txt
|
37
36
|
- configure.ac
|
38
37
|
- install.rb
|
@@ -44,6 +43,7 @@ files:
|
|
44
43
|
- uninstall.rb
|
45
44
|
- examples
|
46
45
|
- lib
|
46
|
+
- README.html
|
47
47
|
- configure
|
48
48
|
- doc/css
|
49
49
|
- doc/ex
|
@@ -59,13 +59,36 @@ files:
|
|
59
59
|
- doc/index.html
|
60
60
|
- doc/info.html
|
61
61
|
- doc/magick.html
|
62
|
+
- doc/rvg.html
|
63
|
+
- doc/rvgclip.html
|
64
|
+
- doc/rvggroup.html
|
65
|
+
- doc/rvgimage.html
|
66
|
+
- doc/rvgpattern.html
|
67
|
+
- doc/rvgshape.html
|
68
|
+
- doc/rvgstyle.html
|
69
|
+
- doc/rvgtext.html
|
70
|
+
- doc/rvgtspan.html
|
71
|
+
- doc/rvgtut.html
|
72
|
+
- doc/rvguse.html
|
73
|
+
- doc/rvgxform.html
|
62
74
|
- doc/struct.html
|
63
75
|
- doc/usage.html
|
64
76
|
- doc/scripts
|
65
77
|
- doc/css/popup.css
|
66
78
|
- doc/css/doc.css
|
79
|
+
- doc/css/ref.css
|
67
80
|
- doc/ex/images
|
68
81
|
- doc/ex/Adispatch.rb
|
82
|
+
- doc/ex/InitialCoords.rb
|
83
|
+
- doc/ex/NewCoordSys.rb
|
84
|
+
- doc/ex/OrigCoordSys.rb
|
85
|
+
- doc/ex/PreserveAspectRatio.rb
|
86
|
+
- doc/ex/RotateScale.rb
|
87
|
+
- doc/ex/Skew.rb
|
88
|
+
- doc/ex/Use01.rb
|
89
|
+
- doc/ex/Use02.rb
|
90
|
+
- doc/ex/Use03.rb
|
91
|
+
- doc/ex/ViewBox.rb
|
69
92
|
- doc/ex/Zconstitute.rb
|
70
93
|
- doc/ex/adaptive_threshold.rb
|
71
94
|
- doc/ex/add_noise.rb
|
@@ -73,8 +96,11 @@ files:
|
|
73
96
|
- doc/ex/affine_transform.rb
|
74
97
|
- doc/ex/arc.rb
|
75
98
|
- doc/ex/arcpath.rb
|
99
|
+
- doc/ex/arcs01.rb
|
100
|
+
- doc/ex/arcs02.rb
|
76
101
|
- doc/ex/average.rb
|
77
102
|
- doc/ex/axes.rb
|
103
|
+
- doc/ex/baseline_shift01.rb
|
78
104
|
- doc/ex/bilevel_channel.rb
|
79
105
|
- doc/ex/blur_image.rb
|
80
106
|
- doc/ex/border.rb
|
@@ -90,6 +116,7 @@ files:
|
|
90
116
|
- doc/ex/charcoal.rb
|
91
117
|
- doc/ex/chop.rb
|
92
118
|
- doc/ex/circle.rb
|
119
|
+
- doc/ex/circle01.rb
|
93
120
|
- doc/ex/clip_path.rb
|
94
121
|
- doc/ex/coalesce.rb
|
95
122
|
- doc/ex/color_fill_to_border.rb
|
@@ -102,18 +129,23 @@ files:
|
|
102
129
|
- doc/ex/contrast.rb
|
103
130
|
- doc/ex/crop.rb
|
104
131
|
- doc/ex/crop_with_gravity.rb
|
132
|
+
- doc/ex/cubic01.rb
|
133
|
+
- doc/ex/cubic02.rb
|
105
134
|
- doc/ex/cycle_colormap.rb
|
106
135
|
- doc/ex/demo.rb
|
107
136
|
- doc/ex/drawcomp.rb
|
108
137
|
- doc/ex/drop_shadow.rb
|
109
138
|
- doc/ex/edge.rb
|
110
139
|
- doc/ex/ellipse.rb
|
140
|
+
- doc/ex/ellipse01.rb
|
111
141
|
- doc/ex/emboss.rb
|
112
142
|
- doc/ex/enhance.rb
|
113
143
|
- doc/ex/equalize.rb
|
144
|
+
- doc/ex/evenodd.rb
|
114
145
|
- doc/ex/flatten_images.rb
|
115
146
|
- doc/ex/flip.rb
|
116
147
|
- doc/ex/flop.rb
|
148
|
+
- doc/ex/font_styles.rb
|
117
149
|
- doc/ex/fonts.rb
|
118
150
|
- doc/ex/frame.rb
|
119
151
|
- doc/ex/gaussian_blur.rb
|
@@ -123,11 +155,14 @@ files:
|
|
123
155
|
- doc/ex/gradientfill.rb
|
124
156
|
- doc/ex/grav.rb
|
125
157
|
- doc/ex/gravity.rb
|
158
|
+
- doc/ex/group.rb
|
126
159
|
- doc/ex/hatchfill.rb
|
160
|
+
- doc/ex/image.rb
|
127
161
|
- doc/ex/implode.rb
|
128
162
|
- doc/ex/level.rb
|
129
163
|
- doc/ex/level_channel.rb
|
130
164
|
- doc/ex/line.rb
|
165
|
+
- doc/ex/line01.rb
|
131
166
|
- doc/ex/map.rb
|
132
167
|
- doc/ex/map_f.rb
|
133
168
|
- doc/ex/matte_fill_to_border.rb
|
@@ -141,6 +176,8 @@ files:
|
|
141
176
|
- doc/ex/motion_blur.rb
|
142
177
|
- doc/ex/negate.rb
|
143
178
|
- doc/ex/negate_channel.rb
|
179
|
+
- doc/ex/nested_rvg.rb
|
180
|
+
- doc/ex/nonzero.rb
|
144
181
|
- doc/ex/normalize.rb
|
145
182
|
- doc/ex/oil_paint.rb
|
146
183
|
- doc/ex/opacity.rb
|
@@ -150,15 +187,20 @@ files:
|
|
150
187
|
- doc/ex/pattern1.rb
|
151
188
|
- doc/ex/pattern2.rb
|
152
189
|
- doc/ex/polygon.rb
|
190
|
+
- doc/ex/polygon01.rb
|
153
191
|
- doc/ex/polyline.rb
|
192
|
+
- doc/ex/polyline01.rb
|
154
193
|
- doc/ex/posterize.rb
|
155
194
|
- doc/ex/preview.rb
|
156
195
|
- doc/ex/qbezierpath.rb
|
196
|
+
- doc/ex/quad01.rb
|
157
197
|
- doc/ex/quantize-m.rb
|
158
198
|
- doc/ex/radial_blur.rb
|
159
199
|
- doc/ex/raise.rb
|
160
200
|
- doc/ex/random_channel_threshold.rb
|
161
201
|
- doc/ex/random_threshold_channel.rb
|
202
|
+
- doc/ex/rect01.rb
|
203
|
+
- doc/ex/rect02.rb
|
162
204
|
- doc/ex/rectangle.rb
|
163
205
|
- doc/ex/reduce_noise.rb
|
164
206
|
- doc/ex/roll.rb
|
@@ -166,8 +208,16 @@ files:
|
|
166
208
|
- doc/ex/rotate_f.rb
|
167
209
|
- doc/ex/roundrect.rb
|
168
210
|
- doc/ex/rubyname.rb
|
211
|
+
- doc/ex/rvg_clippath.rb
|
212
|
+
- doc/ex/rvg_linecap.rb
|
213
|
+
- doc/ex/rvg_linejoin.rb
|
214
|
+
- doc/ex/rvg_opacity.rb
|
215
|
+
- doc/ex/rvg_pattern.rb
|
216
|
+
- doc/ex/rvg_stroke_dasharray.rb
|
169
217
|
- doc/ex/segment.rb
|
218
|
+
- doc/ex/sepiatone.rb
|
170
219
|
- doc/ex/shade.rb
|
220
|
+
- doc/ex/shadow.rb
|
171
221
|
- doc/ex/shave.rb
|
172
222
|
- doc/ex/shear.rb
|
173
223
|
- doc/ex/skewx.rb
|
@@ -178,13 +228,16 @@ files:
|
|
178
228
|
- doc/ex/spread.rb
|
179
229
|
- doc/ex/stegano.rb
|
180
230
|
- doc/ex/stroke_dasharray.rb
|
231
|
+
- doc/ex/stroke_fill.rb
|
181
232
|
- doc/ex/stroke_linecap.rb
|
182
233
|
- doc/ex/stroke_linejoin.rb
|
183
234
|
- doc/ex/stroke_width.rb
|
184
235
|
- doc/ex/swirl.rb
|
185
236
|
- doc/ex/text.rb
|
237
|
+
- doc/ex/text01.rb
|
186
238
|
- doc/ex/text_align.rb
|
187
239
|
- doc/ex/text_antialias.rb
|
240
|
+
- doc/ex/text_styles.rb
|
188
241
|
- doc/ex/text_undercolor.rb
|
189
242
|
- doc/ex/texture_fill_to_border.rb
|
190
243
|
- doc/ex/texture_floodfill.rb
|
@@ -193,10 +246,17 @@ files:
|
|
193
246
|
- doc/ex/to_blob.rb
|
194
247
|
- doc/ex/translate.rb
|
195
248
|
- doc/ex/transparent.rb
|
249
|
+
- doc/ex/tref01.rb
|
250
|
+
- doc/ex/triangle01.rb
|
196
251
|
- doc/ex/trim.rb
|
252
|
+
- doc/ex/tspan01.rb
|
253
|
+
- doc/ex/tspan02.rb
|
254
|
+
- doc/ex/tspan03.rb
|
197
255
|
- doc/ex/unsharp_mask.rb
|
198
256
|
- doc/ex/viewex.rb
|
199
257
|
- doc/ex/wave.rb
|
258
|
+
- doc/ex/writing_mode01.rb
|
259
|
+
- doc/ex/writing_mode02.rb
|
200
260
|
- doc/ex/images/Ballerina.jpg
|
201
261
|
- doc/ex/images/Ballerina3.jpg
|
202
262
|
- doc/ex/images/Button_0.gif
|
@@ -247,6 +307,24 @@ files:
|
|
247
307
|
- doc/ex/images/Shorts.jpg
|
248
308
|
- doc/ex/images/Snake.wmf
|
249
309
|
- doc/ex/images/Violin.jpg
|
310
|
+
- doc/ex/images/big-duck.gif
|
311
|
+
- doc/ex/images/duck.gif
|
312
|
+
- doc/ex/images/duck0.gif
|
313
|
+
- doc/ex/images/duck1.gif
|
314
|
+
- doc/ex/images/duck10.gif
|
315
|
+
- doc/ex/images/duck11.gif
|
316
|
+
- doc/ex/images/duck12.gif
|
317
|
+
- doc/ex/images/duck13.gif
|
318
|
+
- doc/ex/images/duck14.gif
|
319
|
+
- doc/ex/images/duck15.gif
|
320
|
+
- doc/ex/images/duck2.gif
|
321
|
+
- doc/ex/images/duck3.gif
|
322
|
+
- doc/ex/images/duck4.gif
|
323
|
+
- doc/ex/images/duck5.gif
|
324
|
+
- doc/ex/images/duck6.gif
|
325
|
+
- doc/ex/images/duck7.gif
|
326
|
+
- doc/ex/images/duck8.gif
|
327
|
+
- doc/ex/images/duck9.gif
|
250
328
|
- doc/ex/images/graydient230x6.gif
|
251
329
|
- doc/ex/images/logo400x83.gif
|
252
330
|
- doc/ex/images/model.miff
|
@@ -274,7 +352,22 @@ files:
|
|
274
352
|
- examples/rotating_text.rb
|
275
353
|
- examples/thumbnail.rb
|
276
354
|
- examples/vignette.rb
|
355
|
+
- lib/rvg
|
277
356
|
- lib/RMagick.rb
|
357
|
+
- lib/rvg/clippath.rb
|
358
|
+
- lib/rvg/container.rb
|
359
|
+
- lib/rvg/deep_equal.rb
|
360
|
+
- lib/rvg/describable.rb
|
361
|
+
- lib/rvg/embellishable.rb
|
362
|
+
- lib/rvg/misc.rb
|
363
|
+
- lib/rvg/paint.rb
|
364
|
+
- lib/rvg/pathdata.rb
|
365
|
+
- lib/rvg/rvg.rb
|
366
|
+
- lib/rvg/stretchable.rb
|
367
|
+
- lib/rvg/stylable.rb
|
368
|
+
- lib/rvg/text.rb
|
369
|
+
- lib/rvg/transformable.rb
|
370
|
+
- lib/rvg/units.rb
|
278
371
|
test_files: []
|
279
372
|
rdoc_options: []
|
280
373
|
extra_rdoc_files: []
|