-
Notifications
You must be signed in to change notification settings - Fork 2
/
cbezier6.rb.html
79 lines (69 loc) · 2.16 KB
/
cbezier6.rb.html
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
<!DOCTYPE public PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta name="generator" content="ex2html.rb" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/popup.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script>
hljs.configure({ cssSelector: "pre" });
hljs.highlightAll();
</script>
<title>RMagick example: cbezier6.rb</title>
</head>
<body>
<h1>cbezier6.rb</h1>
<div class="bodybox">
<div class="bodyfloat">
<pre class="language-ruby">
# frozen_string_literal: true
require 'rmagick'
imgl = Magick::ImageList.new
imgl.new_image(400, 300, Magick::HatchFill.new('white', 'lightcyan2'))
gc = Magick::Draw.new
# Draw Bezier curve
gc.stroke('red')
gc.stroke_width(2)
gc.fill_opacity(0)
gc.bezier(50, 150, 50, 50, 200, 50, 200, 150, 200, 250, 350, 250, 350, 150)
# Draw filled circles for the control points
gc.fill('gray50')
gc.stroke('gray50')
gc.fill_opacity(1)
gc.circle(50, 50, 53, 53)
gc.circle(200, 50, 203, 53)
gc.circle(200, 250, 203, 253)
gc.circle(350, 250, 353, 253)
# Draw circles on the points the curve passes through
gc.fill_opacity(0)
gc.circle(50, 150, 53, 153)
gc.circle(200, 150, 203, 153)
gc.circle(350, 150, 353, 153)
# Draw the gray lines between points and control points
gc.line(50, 50, 50, 150)
gc.line(200, 50, 200, 250)
gc.line(350, 150, 350, 250)
# Annotate
gc.font_weight(Magick::NormalWeight)
gc.font_style(Magick::NormalStyle)
gc.fill('black')
gc.fill_opacity(1)
gc.stroke('transparent')
gc.text(30, 170, "'50,150'")
gc.text(30, 40, "'50,50'")
gc.text(180, 40, "'200,50'")
gc.text(210, 155, "'200,150'")
gc.text(180, 270, "'200,250'")
gc.text(330, 270, "'350,250'")
gc.text(330, 140, "'350,150'")
gc.draw(imgl)
imgl.border!(1, 1, 'lightcyan2')
imgl.write('cbezier6.gif')
exit
</pre>
</div>
</div>
<div id="close"><a href="javascript:window.close();">Close window</a></div>
</body>
</html>