2023-02-03 21:26:35 +01:00
|
|
|
<!DOCTYPE html>
|
2023-04-03 00:59:22 +02:00
|
|
|
<html th:lang="${#locale.toString()}" th:lang-direction="#{language.direction}" xmlns:th="http://www.thymeleaf.org">
|
2023-02-03 21:26:35 +01:00
|
|
|
|
2023-02-05 13:54:48 +01:00
|
|
|
<th:block th:insert="~{fragments/common :: head(title=#{imageToPDF.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>
|
2023-05-03 23:07:51 +02:00
|
|
|
<th:block th:insert="~{fragments/common :: game}"></th:block>
|
2023-02-11 15:27:15 +01:00
|
|
|
<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="#{imageToPDF.header}"></h2>
|
|
|
|
|
|
|
|
<form method="post" enctype="multipart/form-data" th:action="@{img-to-pdf}">
|
2023-03-25 23:16:26 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2023-03-26 00:05:30 +01:00
|
|
|
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multiple=false, accept='image/*', inputText=#{imgPrompt})}"></div>
|
2023-03-25 23:16:26 +01:00
|
|
|
|
|
|
|
<div class="form-check">
|
|
|
|
<input type="checkbox" class="form-check-input" name="stretchToFit" id="stretchToFit">
|
|
|
|
<label class="ml-3" for="stretchToFit" th:text=#{imageToPDF.selectText.1}></label>
|
|
|
|
</div>
|
|
|
|
<div class="form-check">
|
|
|
|
<input type="checkbox" class="form-check-input" name="autoRotate" id="autoRotate">
|
|
|
|
<label class="ml-3" for="autoRotate" th:text=#{imageToPDF.selectText.2}></label>
|
2023-02-11 15:27:15 +01:00
|
|
|
</div>
|
2023-05-10 23:51:01 +02:00
|
|
|
<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>
|
2023-03-25 23:16:26 +01:00
|
|
|
<br>
|
|
|
|
<input type="hidden" id="override" name="override" value="multi">
|
|
|
|
<div class="form-group">
|
|
|
|
<label th:text=#{imageToPDF.selectText.3}></label>
|
|
|
|
<select class="form-control" id="conversionType" name="conversionType" disabled>
|
|
|
|
<option value="merge" th:text=#{imageToPDF.selectText.4}></option>
|
|
|
|
<option value="convert" th:text=#{imageToPDF.selectText.5} selected></option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
2023-02-11 15:27:15 +01:00
|
|
|
<br> <br>
|
2023-04-02 12:51:07 +02:00
|
|
|
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{imageToPDF.submit}"></button>
|
2023-05-03 23:07:51 +02:00
|
|
|
<script>
|
2023-03-25 23:16:26 +01:00
|
|
|
$('#fileInput-input').on('change', function() {
|
|
|
|
var files = document.getElementById("fileInput-input").files;
|
|
|
|
var conversionType = document.getElementById("conversionType");
|
|
|
|
console.log("files.length=" + files.length)
|
|
|
|
if (files.length > 1) {
|
|
|
|
conversionType.disabled = false;
|
|
|
|
} else {
|
|
|
|
conversionType.disabled = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#conversionType').change(function() {
|
|
|
|
var selectedValue = $(this).val();
|
|
|
|
var override = document.getElementById("override");
|
|
|
|
console.log("selectedValue=" + selectedValue)
|
|
|
|
if (selectedValue === 'merge') {
|
|
|
|
override.value = "single";
|
|
|
|
} else if (selectedValue === 'convert') {
|
|
|
|
override.value = "multi";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
2023-02-11 15:27:15 +01:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div th:insert="~{fragments/footer.html :: footer}"></div>
|
|
|
|
</div>
|
2023-02-03 21:26:35 +01:00
|
|
|
</body>
|
|
|
|
</html>
|