-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
60 lines (55 loc) · 2.51 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
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Convert PDF to SVG , convert SVG to PNG format.">
<link rel="stylesheet" href="./index.css">
<title>Converter | PDF To SVG | SVG to PNG</title>
</head>
<body style="font-family:Arial,Helvetica,sans-serif;">
<div class="header">
<h2>Converter <span title="Convert PDF to SVG Format, convert SVG to PNG">!</span></h2>
</div>
<div class="container">
<div class="row">
<div class="card">
<h2>Convert PDF to SVG</h2>
<form action="pdf2svg.php" method="POST" enctype="multipart/form-data" class=" ">
<input type="hidden" name="MAX_FILE_SIZE" value="1000000" />
<input type="file" name="file" id="file" accept="application/pdf" />
<input type="submit" name="submit" value="Convert" title="convert to SVG"
class="btn btn-primary text-white" />
</form>
</div>
</div>
<div class="row">
<div class="card">
<h2>Convert SVG to PNG</h2>
<form action="svg2png.php" method="POST" enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="1000000" />
<input type="file" name="file" id="file" accept="image/svg+xml" />
<input type="submit" name="submit" value="Convert" title="convert to PNG"
class="btn btn-primary text-white" />
<div class="disable-handler">
<input type="checkbox" name="no-antialiasing" value="1" id="no-antialiasing" /><label for="no-antialiasing">
disable <a href="//wikipedia.org/wiki/anti-aliasing">anti-aliasing</a> (experimental)</label>
</div>
</form>
</div>
</div>
<footer>
<div style="height:100px;" class="od-spacer"></div>
<div style="color:white">
<div style="width:33%; border-bottom: 2px solid #396; float: left;"> </div>
<div style="width:33%; border-bottom: 2px solid #A7D7F9; float: left;"> </div>
<div style="width:33%; border-bottom: 2px solid #666; float: left;"> </div>
</div>
<div style="clear:left; margin-top: 0.3em">This tool is maintained by <a
href="//commons.wikimedia.org/wiki/User:Rillke" class="text-primary">Rillke</a> and others. Issues and pull
requests? <a href="https://github.com/Rillke/convert" class="text-info">On GitHub</a>.</div>
</footer>
</div>
</body>
</html>