-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.html
62 lines (59 loc) · 1.74 KB
/
dev.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title><img-magick> by Nick Kircos</title>
<script type="module" src="dist/img-magick.umd.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<h1>
<a href="https://github.com/f0urfingeredfish/img-magick"
><img-magick> on Github</a
>
</h1>
<h4><a href="http://blackholedesign.com/">by Nick Kircos</a></h4>
<p>
The power of <a href="https://imagemagick.org/">ImageMagick</a> with the
ease of use of the <img> tag.
</p>
<img src="./example.jpg" />
<code><img src="./example.jpg"/></code>
<img-magick
src="./example.jpg"
cmd="convert * -paint 5"
showloader
></img-magick>
<code
><img-magick src="./example.jpg" cmd="convert * -paint 5"
showloader><img-magick></code
>
<img-magick
src="./example.jpg"
cmd="convert * -swirl 90"
showloader
></img-magick>
<code
><img-magick src="./example.jpg" cmd="convert * -swirl 90" showloader
></img-magick></code
>
<img-magick
src="./example.jpg"
cmd="convert * -colorspace Gray -edge 2 -negate"
showloader
></img-magick>
<code
><img-magick src="./example.jpg" cmd="convert * -colorspace Gray -edge
2 -negate" showloader></img-magick></code
>
<img-magick
src="./example.jpg"
cmd="convert * -virtual-pixel tile -implode 4"
showloader
></img-magick>
<code
><img-magick src="./example.jpg" cmd="convert * -virtual-pixel tile
-implode 4" showloader ></img-magick></code
>
</body>
</html>