summaryrefslogtreecommitdiff
path: root/modules/pdfrotate/index.html
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2017-11-16 00:33:41 +0100
committertomsmeding <tom.smeding@gmail.com>2017-11-16 00:33:47 +0100
commitdbd9786a07e9c10cfe07db58f660fa186243b9a3 (patch)
treeb5e231bd999cbdde1432027561bfa59efe506f63 /modules/pdfrotate/index.html
parent4ef74766662a8b57124cdc4b7a9fdafd686f0de2 (diff)
Add pdfrotate module
Diffstat (limited to 'modules/pdfrotate/index.html')
-rw-r--r--modules/pdfrotate/index.html65
1 files changed, 65 insertions, 0 deletions
diff --git a/modules/pdfrotate/index.html b/modules/pdfrotate/index.html
new file mode 100644
index 0000000..ae63865
--- /dev/null
+++ b/modules/pdfrotate/index.html
@@ -0,0 +1,65 @@
+<!doctype html>
+<html>
+<head>
+<meta charset="utf-8">
+<title>PDF rotate</title>
+<script>
+window.addEventListener("load",function(){
+ var errc=location.href.split("?err=")[1];
+ if(errc){
+ if(errc=="nopdf")alert("That doesn't seem to be a PDF document.");
+ else if(errc=="rot0")alert("Haha your document was already upright. Maybe just use that instead?");
+ else if(errc=="invrot")alert("Don't bug my form, that rotation was invalid!");
+ else if(errc=="pdfjamerr")alert("An error occurred trying to convert that document. Maybe it isn't a PDF document?");
+ else alert("Unknown error occurred ('"+errc+"')");
+ }
+});
+</script>
+<style>
+.pagediagram {
+ display: inline-block;
+ border: 1px black solid;
+ width: 40px;
+ height: 56px;
+ font-family: sans-serif;
+ font-size: 40px;
+ text-align: center;
+ margin-left: 9px;
+ margin-right: 9px;
+ line-height: 62px;
+}
+</style>
+</head>
+<body>
+<h1>PDF rotate</h1>
+<p>Select a PDF file below.</p>
+<form method="POST" action="/pdfrotate/upload" enctype="multipart/form-data">
+ <input type="file" id="file" name="file" required><br>
+ <p>Click the button that looks most like the document you have. We will turn it upright.</p>
+ <table><tbody><tr>
+ <!-- CSS and pdfjam rotation are conveniently each other's inverses. -->
+ <td style="text-align: center;">
+ <label for="rot0"><div class="pagediagram" style="transform:rotate(0deg);">A</div></label><br>
+ <input type="radio" id="rot0" name="rotgroup" value="rot0" required>
+ </td>
+ <td style="text-align: center;">
+ <label for="rot90"><div class="pagediagram" style="transform:rotate(90deg);">A</div></label><br>
+ <input type="radio" id="rot90" name="rotgroup" value="rot90" required>
+ </td>
+ <td style="text-align: center;">
+ <label for="rot180"><div class="pagediagram" style="transform:rotate(180deg);">A</div></label><br>
+ <input type="radio" id="rot180" name="rotgroup" value="rot180" required>
+ </td>
+ <td style="text-align: center;">
+ <label for="rot270"><div class="pagediagram" style="transform:rotate(270deg);">A</div></label><br>
+ <input type="radio" id="rot270" name="rotgroup" value="rot270" required>
+ </td>
+ </tr></tbody></table>
+ <p>Now click the button below to finish the process!</p>
+ <input type="submit" value="Upload, turn and download result!">
+</form>
+<br>
+<br>
+<i><small>This uses <a href="https://warwick.ac.uk/fac/sci/statistics/staff/academic-research/firth/software/pdfjam/">pdfjam</a> to perform the actual hard work. Credits to me only for the slick rotated A's above.</small></i>
+</body>
+</html>