Spaces:
Paused
Paused
File size: 11,834 Bytes
f143ca4 26cc82f f143ca4 91b9c63 f143ca4 91b9c63 f143ca4 91b9c63 f143ca4 91b9c63 f143ca4 91b9c63 f143ca4 91b9c63 f143ca4 91b9c63 f143ca4 91b9c63 f143ca4 91b9c63 f143ca4 91b9c63 f143ca4 91b9c63 f143ca4 91b9c63 f143ca4 91b9c63 | 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 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 | <div class="ai-tool-container">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.13.11/katex.min.css">
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100&display=swap" rel="stylesheet">
<div class="container">
<h3>Image to sketch</h3>
<form id="remakeai-form">
<div class="form-group">
<label for="file" class="custom-file-upload">
<i class="fa fa-cloud-upload"></i> Upload Image
</label>
<input type="file" id="file" name="file" required>
<span id="file-name"></span>
</div>
<button type="submit" class="btn-submit">Submit</button>
</form>
<div class="result"></div>
<div class="progress-container">
<div class="progress-bar" id="progress-bar"></div>
</div>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function() {
const form = document.getElementById("remakeai-form");
const fileInput = document.getElementById('file');
const fileNameSpan = document.getElementById('file-name');
const progressBar = document.getElementById('progress-bar');
const progressContainer = document.querySelector('.progress-container');
const resultDiv = document.querySelector(".result");
let simulatedProgressInterval;
let simulatedProgress = 0;
fileInput.addEventListener('change', function() {
fileNameSpan.textContent = this.files[0].name;
});
form.addEventListener("submit", async function(event) {
event.preventDefault();
const file = fileInput.files[0];
const compressedFile = await compressImage(file);
const formData = new FormData();
formData.append('file', compressedFile, file.name);
// Reset and show the progress bar
progressBar.style.width = '0%';
progressContainer.style.display = 'block';
simulatedProgress = 0;
// Clear previous result
resultDiv.innerHTML = '';
const xhr = new XMLHttpRequest();
xhr.open("POST", "/upload/", true);
xhr.responseType = 'json'; // Ensure the response is treated as JSON
xhr.upload.onprogress = function(event) {
if (event.lengthComputable) {
const percentComplete = (event.loaded / event.total) * 100;
updateProgressBar(percentComplete);
}
};
xhr.onloadstart = function() {
// Start simulating progress during backend processing
simulateBackendProcessingProgress();
};
xhr.onload = function() {
clearInterval(simulatedProgressInterval); // Stop simulation
if (xhr.status === 200) {
const response = xhr.response;
if (response.error) {
resultDiv.innerHTML = `<p class="error-message">${response.error}</p>`;
} else {
const originalURL = URL.createObjectURL(file);
const sketchImageBase64 = response.sketch_image_base64;
resultDiv.innerHTML = `
<h2>Result</h2>
<div class="result-images">
<img src="${originalURL}" alt="Original Image" class="result-image">
<span class="arrow">↓</span>
<img src="${sketchImageBase64}" alt="Sketch Image" class="result-image">
</div>
`;
// Create and append the download button
const downloadButton = document.createElement('a');
downloadButton.href = sketchImageBase64;
downloadButton.download = 'result.jpg';
downloadButton.textContent = 'Download Result';
downloadButton.className = 'btn-download';
resultDiv.appendChild(downloadButton);
updateProgressBar(100);
}
} else {
resultDiv.innerHTML = `<p class="error-message">Error: ${xhr.statusText}</p>`;
updateProgressBar(0);
}
setTimeout(() => {
progressContainer.style.display = 'none';
}, 1000);
};
xhr.onerror = function() {
clearInterval(simulatedProgressInterval); // Stop simulation
resultDiv.innerHTML = `<p class="error-message">Error: Network Error</p>`;
updateProgressBar(0);
setTimeout(() => {
progressContainer.style.display = 'none';
}, 1000);
};
xhr.send(formData);
});
async function compressImage(file) {
return new Promise((resolve, reject) => {
const reader = new FileReader();
reader.onload = function(event) {
const img = new Image();
img.src = event.target.result;
img.onload = function() {
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d');
// Calculate the new dimensions to resize the image while maintaining aspect ratio
const maxWidth = 1000;
const maxHeight = 1000;
let width = img.width;
let height = img.height;
if (width > height) {
if (width > maxWidth) {
height *= maxWidth / width;
width = maxWidth;
}
} else {
if (height > maxHeight) {
width *= maxHeight / height;
height = maxHeight;
}
}
// Set the canvas dimensions
canvas.width = width;
canvas.height = height;
// Draw the image on the canvas with the new dimensions
ctx.drawImage(img, 0, 0, width, height);
// Convert canvas content to a blob
canvas.toBlob((blob) => {
resolve(blob);
}, 'image/jpeg', 0.7); // Adjust quality as needed (0.7 is 70% quality)
}
}
// Read the file as data URL
reader.readAsDataURL(file);
});
}
function updateProgressBar(percentComplete) {
progressBar.style.width = percentComplete + '%';
updateProgressBarColor(percentComplete);
}
function updateProgressBarColor(percentComplete) {
const startColor = "#ff0000"; // Red
const endColor = "#0056b3"; // Blue
const currentColor = interpolateColor(startColor, endColor, percentComplete / 100);
progressBar.style.backgroundColor = currentColor;
}
function interpolateColor(color1, color2, factor) {
const result = color1.slice(1).match(/.{2}/g).map((hex, i) => {
return Math.round(parseInt(hex, 16) * (1 - factor) + parseInt(color2.slice(1).match(/.{2}/g)[i], 16) * factor);
});
return `#${result.map(val => val.toString(16).padStart(2, '0')).join('')}`;
}
function simulateBackendProcessingProgress() {
simulatedProgressInterval = setInterval(() => {
simulatedProgress += 1; // Increment progress by 1%
if (simulatedProgress < 90) { // Cap the simulated progress at 90%
updateProgressBar(simulatedProgress);
} else {
clearInterval(simulatedProgressInterval); // Stop simulation at 90%
}
}, 200); // Update every 200ms
}
});
</script>
<style>
.ai-tool-container body{
font-family: 'Barlow Condensed', sans-serif;
background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
direction: ltr;
}
.ai-tool-container {
background: #fff;
border-radius: 10px;
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
padding: 20px;
max-width: 500px;
width: 100%;
text-align: center;
direction: ltr;
}
.ai-tool-container h3 {
font-size: 24px;
margin-bottom: 20px;
color: #333;
}
.ai-tool-container .form-group {
margin-bottom: 15px;
text-align: left;
}
.ai-tool-container
input[type="file"] {
display: none;
}
.ai-tool-container .custom-file-upload {
display: inline-block;
padding: 10px 20px;
cursor: pointer;
background-color: #007bff;
color: #fff;
border-radius: 5px;
transition: background 0.3s;
}
.ai-tool-container .custom-file-upload:hover {
background-color: #0056b3;
}
.ai-tool-container #file-name {
display: block;
margin-top: 10px;
font-size: 14px;
color: #555;
}
.ai-tool-container .radio-group {
display: flex;
justify-content: space-around;
align-items: center;
}
.ai-tool-container .btn-submit {
background: #007bff;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s;
}
.ai-tool-container .btn-submit:hover {
background: #0056b3;
}
.ai-tool-container .result {
margin-top: 20px;
}
.ai-tool-container .result h2 {
font-size: 20px;
color: #333;
}
.ai-tool-container .result-image {
max-width: 100%;
border-radius: 10px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}
.ai-tool-container .result-image:hover {
transform: scale(1.05);
}
.ai-tool-container .error-message {
color: red;
font-size: 16px;
}
.ai-tool-container .progress-container {
width: 100%;
background-color: #f3f3f3;
border-radius: 5px;
overflow: hidden;
margin-top: 20px;
display: none;
}
.ai-tool-container .progress-bar {
height: 10px;
width: 0%;
transition: width 0.4s ease, background-color 0.4s ease;
}
.ai-tool-container .result-images {
display: flex;
align-items: center;
justify-content: center;
}
.ai-tool-container .result-images {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.ai-tool-container .result-image {
max-width: 100%;
max-height: 300px;
border-radius: 10px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
margin: 10px 0;
}
.ai-tool-container .result-image:hover {
transform: scale(1.05);
}
.ai-tool-container .arrow {
font-size: 24px;
color: #333;
margin: 10px 0;
}
.ai-tool-container .btn-download {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #708090;
color: #fff;
border-radius: 5px;
text-decoration: none;
transition: background 0.3s;
}
.ai-tool-container .btn-download:hover {
background-color: #218838;
}
</style>
</div>
|