2023-10-16 23:11:33 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Document</title>
|
|
|
|
|
|
|
|
<script src="https://unpkg.com/pdf-lib@1.17.1/dist/pdf-lib.min.js"></script>
|
|
|
|
<script src="https://unpkg.com/downloadjs@1.4.7"></script>
|
|
|
|
|
|
|
|
<script src="index.js" type="module"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<input type="file" id="pdfFile" accept=".pdf">
|
2023-10-17 01:31:00 +02:00
|
|
|
|
|
|
|
<ul id="operations">
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<select id="pdfOptions">
|
|
|
|
<option value="scaleContent">Scale Content</option>
|
|
|
|
<option value="changePageSize">Change Page Size</option>
|
|
|
|
<option value="mergePDFs">Merge PDFs</option>
|
|
|
|
<option value="splitPDFs">Split PDFs</option>
|
|
|
|
</select>
|
|
|
|
<button id="addButton">Add</button>
|
|
|
|
|
|
|
|
<button id="doneButton">Done</button>
|
2023-10-16 23:11:33 +02:00
|
|
|
</body>
|
|
|
|
</html>
|