-
Notifications
You must be signed in to change notification settings - Fork 2
/
fill_pattern.rb.html
49 lines (43 loc) · 1.71 KB
/
fill_pattern.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
<!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: fill_pattern.rb</title>
</head>
<body>
<h1>fill_pattern.rb</h1>
<div class="bodybox">
<div class="bodyfloat">
<pre class="language-ruby">
# frozen_string_literal: true
require 'rmagick'
# Demonstrate the Magick::Draw#fill_pattern and #stroke_pattern attributes.
temp = Magick::ImageList.new
temp << Magick::Image.new(5, 10) { |info| info.background_color = 'black' }
temp << Magick::Image.new(5, 10) { |info| info.background_color = 'gold' }
stroke_pattern = temp.append(false)
img = Magick::Image.new(280, 250) { |info| info.background_color = 'none' }
gc = Magick::Draw.new
gc.annotate(img, 0, 0, 0, 0, "PATT\nERNS") do |options|
options.gravity = Magick::CenterGravity
options.font_weight = Magick::BoldWeight
options.pointsize = 100
options.fill_pattern = Magick::Image.read('images/Flower_Hat.jpg').first
options.stroke_width = 5
options.stroke_pattern = stroke_pattern
end
img.write('fill_pattern.gif')
</pre>
</div>
</div>
<div id="close"><a href="javascript:window.close();">Close window</a></div>
</body>
</html>