forked from MrLoh/kijanify-imagerenderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (50 loc) · 1.23 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Kijanify Image</title>
</head>
<body>
<form action="http://kijani.co/imagerenderer/img.php" method="GET" style="margin: 100px auto; width: 300px">
<h2>Kijanify Image</h2>
<br>
<br>
<label for="imgurl">
URL of image
</label>
<br>
<input type="url" name="imgurl" id="imgurl" value="http://blog.kijani.co/wp-content/uploads/2014/12/2014-12-05-A-Research-Grant-and-Dedication-to-a-Landscape.jpg">
<br>
<br>
<label for="title">
title to put in image
</label>
<br>
<input type="text" name="title" id="title" value="A Research Grant and Dedication to a Landscape">
<br>
<br>
<label for="width">
width of output image
</label>
<br>
<input type="number" name="width" id="width" step="50" value="800">
<br>
<br>
<label for="type">
file type of output image
</label>
<br>
<input type="radio" name="type" id="type" value="jpg" checked> JPG
<input type="radio" name="type" value="png"> PNG
<br>
<br>
<label for="qual">
quality of output image
</label>
<br>
<input type="range" name="qual" id="qual" min="0" max="100" step="10" value="80">
<br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>