-
Notifications
You must be signed in to change notification settings - Fork 2
/
drawcomp.rb.html
70 lines (62 loc) · 2.16 KB
/
drawcomp.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
<!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: drawcomp.rb</title>
</head>
<body>
<h1>drawcomp.rb</h1>
<div class="bodybox">
<div class="bodyfloat">
<pre class="language-ruby">
# frozen_string_literal: true
require 'rmagick'
# Read the snake image file and scale to 200 pixels high.
begin
snake = Magick::ImageList.new('images/Snake.png')
snake.scale!(200.0 / snake.rows)
# Read the coffee cup image and scale to 200 pixels high.
coffee = Magick::ImageList.new('images/Coffee.png')
coffee.scale!(200.0 / coffee.rows)
# We want the "no" symbol to be a little smaller.
# Read and scale to 150 pixels high.
sign = Magick::ImageList.new('images/No.png')
sign.scale!(150.0 / sign.rows)
# Change the white pixels in the sign to transparent.
sign = sign.matte_replace(0, 0)
# Create a "nosnake" draw object. Add a composite
# primitive that composites the "no" symbol over
# the snake. Draw it.
nosnake = Magick::Draw.new
nosnake.composite(
(snake.columns - sign.columns) / 2,
(snake.rows - sign.rows) / 2, 0, 0, sign
)
nosnake.draw(snake)
# Repeat for the coffee cup.
nocoffee = Magick::Draw.new
nocoffee.composite(
(coffee.columns - sign.columns) / 2,
(coffee.columns - sign.columns) / 2, 0, 0, sign
)
nocoffee.draw(coffee)
coffee.write('drawcomp1.gif')
snake.write('drawcomp2.gif')
rescue Magick::ImageMagickError
puts "#{$PROGRAM_NAME}: ImageMagickError - #{$ERROR_INFO}"
end
exit
</pre>
</div>
</div>
<div id="close"><a href="javascript:window.close();">Close window</a></div>
</body>
</html>