-
Notifications
You must be signed in to change notification settings - Fork 2
/
mask.rb.html
60 lines (51 loc) · 2.17 KB
/
mask.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
<!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: mask.rb</title>
</head>
<body>
<h1>mask.rb</h1>
<div class="bodybox">
<div class="bodyfloat">
<pre class="language-ruby">
# frozen_string_literal: true
require 'rmagick'
# This example demonstrates the mask attribute. The mask image must
# be the same size as the image being masked. Since this mask image does
# not have an alpha channel, the intensity of each pixel is used to define the
# mask. White pixels are more intense than black pixels, so the area of the
# image masked by white pixels will remain unchanged, while the area of the
# image masked by black pixels is affected by any transformations.
# In this example the mask is simply the words "Flower Hat" in black text
# positioned near the bottom of the white clip mask image.
img = Magick::Image.read('images/Flower_Hat.jpg').first
q = Magick::Image.new(img.columns, img.rows)
gc = Magick::Draw.new
gc.annotate(q, 0, 0, 0, 0, 'Flower Hat') do |options|
options.gravity = Magick::SouthGravity
options.pointsize = 36
options.font_weight = Magick::BoldWeight
end
# Set the matte attribute to false, indicating the absence of an alpha channel
# in the mask image. Assign the mask image to the mask= attribute of the image
# being masked.
q.alpha(Magick::DeactivateAlphaChannel)
img.mask q
# Use the #level method to darken the image under the black part of the mask.
img = img.level(0, Magick::QuantumRange, 0.50)
img.write('mask.jpg')
</pre>
</div>
</div>
<div id="close"><a href="javascript:window.close();">Close window</a></div>
</body>
</html>