-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
258 lines (241 loc) · 8.31 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<!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.0">
<title>Gerador de padrões de imagem by lucasew</title>
</head>
<style>
img[src] {
page-break-inside: avoid;
padding: 5px;
margin: 2px;
border: 1px black solid;
}
* {
max-width: 100%;
}
header {
display: flex;
flex-direction: column;
align-items: center;
max-width: 90vw;
padding: 10px;
}
header img {
max-height: 20vh;
max-width: 60vw;
}
h1 {
text-align: center;
}
h2, ul, ol {
text-align: left;
font-weight: normal;
margin: .6rem;
height: 100%;
align-self: flex-start;
}
h1, h2 {
max-width: 100%;
}
@page {
margin: auto;
orphans: 0;
windows: 0;
}
@media print {
header {
display: none;
}
.printimg {
border-style: solid;
border-color: black;
padding: 5px;
margin: 2px;
}
}
body {
margin: 0;
padding: 0;
}
@media not print {
body {
display: flex;
align-items: center;
justify-content: center;
width: 100vw;
min-height: 100vh;
}
.printimg {
display: none;
}
}
div#inputs {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
div.inputItem {
display: flex;
flex-direction: column;
padding: 5px;
align-items: center;
}
div.inputItem input {
width: 100%;
box-sizing: border-box;
}
div.inputItem label {
text-align: center;
}
div#inputs input {
padding: 5px;
margin: 5px;
border-radius: 5px;
border-style: solid;
box-shadow: none;
}
a {
text-decoration: none;
font-weight: bold;
color: inherit;
}
h1 {
font-weight: normal;
}
</style>
<body>
<input type="file" id="loadFile" accept="image/*" style="display:none" onchange="changeImage(this.files[0])" />
<header>
<img id="imagem"/><br>
<h1><span id="title">Gerador de padrões de imagem (by </span><a href="https://github.com/lucasew")>lucasew</a>)</h1>
<p>Este site serve para gerar padrões de uma imagem de forma que possa ser impresso e depois recortado.</p>
<p ><b>OBS: </b> não funciona em mobile. Pelo menos no meu celular usando Firefox não.</p>
<p><b>ESTADO:</b> <span id="estado">Não iniciado</span></p>
<h2>Como usar?</h2>
<ol>
<li>Arraste uma imagem ou selecione clicando no título.</li>
<li>Configure as opções a gosto.</li>
<li>Em <b>ESTADO</b>, quando estiver como pronto é porque deu tudo certo.</li>
<li>Chame a <span style="font-weight: bold; cursor: pointer" onclick="window.print()">visualização de impressão</span> para gerar o pdf. (Ctrl+P)</li>
</ol>
<h2>Opções</h2>
<div id="inputs">
<div class="inputItem">
<label for="altura">Altura (cm, 0 = automático)</label>
<input id="altura" type="number" title="Altura (cm) (0 = automático)"/>
</div>
<div class="inputItem">
<label for="largura">Largura (cm, 0 = automático)</label>
<input id="largura" type="number" title="Largura (cm) (0 = automático)" />
</div>
<div class="inputItem">
<label for="borda">Borda(px, 0 = sem borda)</label>
<input id="borda" type="number" title="Borda (px)" />
</div>
<div class="inputItem">
<label for="repeticoes">Repetições da imagem</label>
<input id="repeticoes" type="number" title="Repetições" value="100" onchange="updateRepeticoes()"/>
</div>
</div>
<h2>É seguro?</h2>
<ul>
<li>O que acontece aqui fica aqui!</li>
<li>As imagens são processadas todas localmente.</li>
<li>A hospedagem apenas fornece este site de forma estática e o resto o seu navegador desenrola.</li>
</ul>
</header>
<script>
function changeImage(to) {
const url = window.URL.createObjectURL(to)
document.getElementById("imagem").src = url
rebuildPrintTree()
}
function changeEstado(text) {
document.getElementById("estado").innerText = text
}
function onDrop(ev) {
ev.preventDefault()
console.log(ev)
changeImage(ev.dataTransfer.files[0])
}
function updateRepeticoes() {
const elem = document.getElementById('repeticoes')
const num = elem.valueAsNumber
if (isNaN(num)) {
return changeEstado("quantidade de repetições inválida")
}
document.querySelectorAll('.printimg').forEach((e) => e.parentElement.removeChild(e))
for (let i = 0; i < num; i++) {
const elem = document.createElement('img')
elem.className = "printimg"
document.body.appendChild(elem)
}
rebuildPrintTree()
}
function rebuildPrintTree() {
const imagem = document.getElementById("imagem").src
if (imagem === "") {
return changeEstado("sem imagem definida")
}
const altura = document.getElementById("altura").valueAsNumber
document.getElementById("altura").value
if (isNaN(altura)) {
return changeEstado("altura não é um número")
}
const largura = document.getElementById("largura").valueAsNumber
if (isNaN(largura)) {
return changeEstado("largura não é um número")
}
const borda = document.getElementById("borda").valueAsNumber
if (isNaN(borda)) {
return changeEstado("borda não é um número")
}
document.querySelectorAll(".printimg").forEach((e) => {
e.src = imagem
if (largura === 0) {
e.style.height = "auto"
} else {
e.style.height = `${largura}cm`
}
if (altura === 0) {
e.style.width = "auto"
} else {
e.style.width = `${altura}cm`
}
e.style.borderWidth = `${borda}px`
})
changeEstado("pronto")
}
window.addEventListener('load', () => {
// query params
const params = new URLSearchParams(document.location.search.substring(1))
console.log(params)
// puxa valores dos query params
if (params.get("imagem")) {
document.getElementById("imagem").src = params.get("imagem")
}
document.getElementById("altura").value = params.get("altura") || ""
document.getElementById("largura").value = params.get("largura") || ""
document.getElementById("borda").value = params.get("borda") || ""
document.getElementById("repeticoes").value = params.get("repeticoes") || "100"
// inscrição dos hooks
window.addEventListener('drop', onDrop)
window.addEventListener('dragover', (ev) => ev.preventDefault())
const title = document.getElementById("title")
title.addEventListener('click', () => {
document.getElementById("loadFile").click()
})
title.style.cursor = 'pointer'
document.getElementById('altura').addEventListener('change', rebuildPrintTree)
document.getElementById('largura').addEventListener('change', rebuildPrintTree)
document.getElementById('borda').addEventListener('change', rebuildPrintTree)
document.getElementById('repeticoes').addEventListener('change', updateRepeticoes)
updateRepeticoes()
})
</script>
</body>
</html>