2023-02-03 21:26:35 +01:00
|
|
|
<!DOCTYPE html>
|
2023-02-07 21:14:03 +01:00
|
|
|
<html th:lang="${#locale.language}" th:lang-direction="#{language.direction}" xmlns:th="http://www.thymeleaf.org">
|
2023-02-03 21:26:35 +01:00
|
|
|
|
2023-02-11 15:27:15 +01:00
|
|
|
<th:block th:insert="~{fragments/common :: head(title=#{pdfToImage.title})}"></th:block>
|
2023-02-03 21:26:35 +01:00
|
|
|
|
2023-02-07 21:14:03 +01:00
|
|
|
|
2023-02-11 15:27:15 +01:00
|
|
|
<body>
|
|
|
|
<div id="page-container">
|
|
|
|
<div id="content-wrap">
|
|
|
|
<div th:insert="~{fragments/navbar.html :: navbar}"></div>
|
|
|
|
|
|
|
|
<br> <br>
|
|
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<h2 th:text="#{pdfToImage.header}"></h2>
|
|
|
|
<p th:text="#{processTimeWarning}"></p>
|
|
|
|
<form method="post" enctype="multipart/form-data" th:action="@{pdf-to-img}">
|
|
|
|
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multiple=false)}"></div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label th:text="#{pdfToImage.selectText}"></label>
|
|
|
|
<select class="form-control" name="imageFormat">
|
|
|
|
<option value="png">PNG</option>
|
2023-02-25 10:53:07 +01:00
|
|
|
<option value="jpg">JPG</option>
|
|
|
|
<option value="gif">GIF</option>
|
2023-02-11 15:27:15 +01:00
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label th:text="#{pdfToImage.singleOrMultiple}"></label>
|
|
|
|
<select class="form-control" name="singleOrMultiple">
|
|
|
|
<option value="single" th:text="#{pdfToImage.single}"></option>
|
|
|
|
<option value="multiple" th:text="#{pdfToImage.multi}"></option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label th:text="#{pdfToImage.colorType}"></label>
|
|
|
|
<select class="form-control" name="colorType">
|
|
|
|
<option value="color" th:text="#{pdfToImage.color}"></option>
|
|
|
|
<option value="greyscale" th:text="#{pdfToImage.grey}"></option>
|
|
|
|
<option value="blackwhite" th:text="#{pdfToImage.blackwhite}"></option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="dpi">DPI:</label>
|
|
|
|
<input type="number" name="dpi" class="form-control" id="dpi" min="1" max="100" step="1" value="30" required>
|
|
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary" th:text="#{pdfToImage.submit}"></button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div th:insert="~{fragments/footer.html :: footer}"></div>
|
|
|
|
</div>
|
2023-02-03 21:26:35 +01:00
|
|
|
</body>
|
|
|
|
</html>
|