-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathEffects.html
More file actions
86 lines (86 loc) · 3.33 KB
/
Effects.html
File metadata and controls
86 lines (86 loc) · 3.33 KB
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
80
81
82
83
84
85
86
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="HTML Tidy for Linux/x86 (vers 1st March 2003), see www.w3.org"
name="generator" />
<title>Image Effects</title>
<link rel="StyleSheet" href="style/magick.css" type="text/css" />
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0085C0"
vlink="#800080" alink="#0085C0">
<center><img src="images/magick.png" align="bottom" width="114"
height="113" /></center>
<hr />
<p>You have your choice of these image effects:</p>
<dl>
<dd>
<dl>
<dt><b>Adaptive Blur</b></dt>
<dd>adaptively blur pixels; decrease effect near edges. Specify <i>radius</i> and <i>sigma</i> as the parameter to effect the characteristics of the sharpening:
<pre>
<i><radius>x<sigma></i>
</pre></dd><br />
<dt><b>Adaptive Sharpen</b></dt>
<dd>adaptively sharpen pixels; increase effect near edges. Specify <i>radius</i> and <i>sigma</i> as the parameter to effect the characteristics of the sharpening:
<pre>
<i><radius>x<sigma></i>
</pre></dd><br />
<dt><b>Sharpen</b></dt>
<dd>sharpen your image. Specify <i>radius</i> and <i>sigma</i> as
the parameter to effect the characteristics of the sharpening:
<pre>
<i><radius>x<sigma></i>
</pre></dd><br />
<dt><b>Blur</b></dt>
<dd>blur your image. Specify <i>radius</i> and <i>sigma</i> as the
parameter to effect the characteristics of the blur:
<pre>
<i><radius>x<sigma></i>
</pre></dd><br />
<dt><b>Gaussian Blur</b></dt>
<dd>Gaussian blur your image. Specify <i>radius</i> and
<i>sigma</i> as the parameter to effect the characteristics of the
blur:
<pre>
<i><radius>x<sigma></i>
</pre></dd><br />
<dt><b>Despeckle</b></dt>
<dd>reduce the speckles within your image.</dd><br />
<dt><b>Median Filter</b></dt>
<dd>reduce the noise in an image by replacing each pixel with the
median color in a circular neighborhood.</dd><br />
<dt><b>Reduce noise</b></dt>
<dd>reduce noise in your image. The principal function of noise
peak elimination filter is to smooth the objects within an image
without losing edge information and without creating undesired
structures.</dd><br />
<dt><b>Emboss</b></dt>
<dd>emboss your image.</dd><br />
<dt><b>Threshold</b></dt>
<dd>create a bi-level image such that any pixel intensity that is
equal or exceeds the threshold is reassigned the maximum intensity
otherwise the minimum intensity.</dd><br />
<dt><b>Edge detect</b></dt>
<dd>detect edges within your image. Specify <i>factor</i> as the
percent enhancement (0.0 - 99.9%).</dd><br />
<dt><b>Motion Blur</b></dt>
<dd>simulate motion blur. Try a parameter of 0x1+135.</dd><br />
<dt><b>Spread</b></dt>
<dd>displace image pixels by a random amount. Specify the parameter
as the amount of spread.</dd><br />
<dt><b>Shade</b></dt>
<dd>shade the image using a distant light source. The parameter
looks like this:
<pre>
<i><azimuth>x<elevation></i>
</pre></dd><br /></dl></dd><br /></dl>
<p>See <a href="images/examples.jpg">examples</a> of select
<b>ImageMagick Studio</b> effects.</p>
<hr />
<p>
<a href="scripts/MagickStudio.cgi/?Action=mogrify&ToolType=Comment&SessionID=null&Path=null"
target="Comment"><img alt="[comment]" src="images/mail.png"
border="0" /></a></p>
</body>
</html>