-
Notifications
You must be signed in to change notification settings - Fork 38
/
index.html
69 lines (67 loc) · 3.5 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
61
62
63
64
65
66
67
68
69
<!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">
<title>LOWrapper</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<style>
.vertical-align {
display: flex;
align-items: center;
}
</style>
</head>
<body>
<div class="container">
<div class="page-header">
<h1>LibreOffice wrapper example</h1>
<p>Usage with PHP</p>
</div>
<form class="form-horizontal">
<div class="form-group vertical-align">
<span class="col-sm-3"><a href="data/html.html">HTML</a> file to text</span>
<a class="btn btn-default col-md-1" href="convert-html-from-file.php">Convert</a>
</div>
<div class="form-group vertical-align">
<span class="col-sm-3"><a href="data/html.html">HTML</a> string to text string</span>
<a class="btn btn-default col-md-1" href="convert-html-from-string.php">Convert</a>
</div>
<div class="form-group vertical-align">
<span class="col-sm-3"><a href="data/pdf.pdf">PDF</a> file to PNG image</span>
<a class="btn btn-default col-md-1" href="convert-pdf-from-file.php">Convert</a>
</div>
<div class="form-group vertical-align">
<span class="col-sm-3"><a href="data/docx.docx">MS Word (docx)</a> file to HTML string</span>
<a class="btn btn-default col-md-1" href="convert-docx-from-file-memory.php">Convert</a>
</div>
<div class="form-group vertical-align">
<span class="col-sm-3"><a href="data/docx.docx">MS Word (docx)</a> file to HTML file</span>
<a class="btn btn-default col-md-1" href="convert-docx-from-file-html.php">Convert</a>
</div>
<div class="form-group vertical-align">
<span class="col-sm-3"><a href="data/odt.odt">LO Writer (odt)</a> file to HTML string</span>
<a class="btn btn-default col-md-1" href="convert-odt-from-file.php">Convert</a>
</div>
<div class="form-group vertical-align">
<span class="col-sm-3"><a href="data/html.html">HTML</a> string to MS Excel file (xlsx)</span>
<a class="btn btn-default col-md-1" href="convert-html-to-xlsx.php">Convert</a>
</div>
<div class="form-group vertical-align">
<span class="col-sm-3"><a href="data/html.html">HTML</a> string to MS Word file (docx)</span>
<a class="btn btn-default col-md-1" href="convert-html-to-docx.php">Convert</a>
</div>
<div class="form-group vertical-align">
<span class="col-sm-3"><a href="data/html.html">HTML</a> string to LO Writer file (odt)</span>
<a class="btn btn-default col-md-1" href="convert-html-to-odt.php">Convert</a>
</div>
<div class="form-group vertical-align">
<span class="col-sm-3"><a href="data/html.html">HTML</a> string to PDF file</span>
<a class="btn btn-default col-md-1" href="convert-html-to-pdf.php">Convert</a>
</div>
</form>
</div>
</body>
</html>