File size: 21,285 Bytes
b338dea 0c880f2 |
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 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PixelPerfect AI - Advanced Image Editor</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<style>
.dropzone {
border: 2px dashed #cbd5e0;
transition: all 0.3s ease;
}
.dropzone.active {
border-color: #4f46e5;
background-color: #eef2ff;
}
.preview-container {
position: relative;
}
.watermark-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
display: flex;
justify-content: center;
align-items: center;
color: white;
font-weight: bold;
opacity: 0;
transition: opacity 0.3s ease;
}
.preview-container:hover .watermark-overlay {
opacity: 1;
}
.progress-ring {
transform: rotate(-90deg);
}
.progress-ring__circle {
stroke-dasharray: 283;
stroke-dashoffset: 283;
transition: stroke-dashoffset 0.5s ease;
}
</style>
</head>
<body class="bg-gray-50 min-h-screen">
<!-- Navigation -->
<nav class="bg-white shadow-sm">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i data-feather="aperture" class="text-indigo-600 h-8 w-8"></i>
<span class="ml-2 text-xl font-bold text-gray-900">PixelPerfect AI</span>
</div>
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center">
<button class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
<i data-feather="user" class="mr-2"></i>
Sign In
</button>
</div>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<div class="text-center mb-12">
<h1 class="text-4xl font-extrabold text-gray-900 sm:text-5xl sm:tracking-tight lg:text-6xl">
AI-Powered Image <span class="text-indigo-600">Enhancement</span>
</h1>
<p class="mt-5 max-w-xl mx-auto text-xl text-gray-500">
Remove watermarks, enhance quality, and transform your images with our cutting-edge AI technology.
</p>
</div>
<!-- Upload Section -->
<div class="bg-white shadow rounded-lg p-6 mb-8">
<div class="flex flex-col md:flex-row gap-8">
<!-- Upload Area -->
<div class="w-full md:w-1/2">
<div id="dropzone" class="dropzone rounded-lg p-8 text-center cursor-pointer h-64 flex flex-col items-center justify-center">
<i data-feather="upload" class="h-12 w-12 text-gray-400 mb-4"></i>
<p class="text-lg font-medium text-gray-700 mb-2">Drag & drop your image here</p>
<p class="text-sm text-gray-500 mb-4">or click to browse files</p>
<input type="file" id="fileInput" class="hidden" accept="image/*">
<button id="uploadBtn" class="px-4 py-2 bg-indigo-600 text-white rounded-md hover:bg-indigo-700 transition duration-150">
Select Image
</button>
<p class="text-xs text-gray-400 mt-4">Supports: JPG, PNG, WEBP (Max 10MB)</p>
</div>
</div>
<!-- Preview & Actions -->
<div class="w-full md:w-1/2">
<div id="previewContainer" class="hidden">
<div class="preview-container mb-4">
<img id="imagePreview" src="" alt="Preview" class="w-full h-48 object-contain rounded-lg border border-gray-200">
<div class="watermark-overlay rounded-lg">
<span>Click to edit</span>
</div>
</div>
<div class="flex justify-between items-center mb-4">
<span id="fileName" class="text-sm font-medium text-gray-700 truncate"></span>
<span id="fileSize" class="text-xs text-gray-500"></span>
</div>
<div class="space-y-4">
<div>
<label for="editType" class="block text-sm font-medium text-gray-700 mb-1">Edit Type</label>
<select id="editType" class="block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm rounded-md">
<option value="watermark">Remove Watermark</option>
<option value="enhance">Enhance Quality</option>
<option value="background">Remove Background</option>
<option value="upscale">Upscale Resolution</option>
</select>
</div>
<button id="processBtn" class="w-full flex justify-center items-center px-4 py-3 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 transition duration-150">
<span>Process Image</span>
<i data-feather="chevron-right" class="ml-2"></i>
</button>
</div>
</div>
<div id="emptyState" class="h-full flex flex-col items-center justify-center text-center p-8 bg-gray-50 rounded-lg">
<i data-feather="image" class="h-10 w-10 text-gray-400 mb-4"></i>
<h3 class="text-lg font-medium text-gray-900 mb-1">No Image Selected</h3>
<p class="text-sm text-gray-500">Upload an image to start editing</p>
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div class="bg-white shadow rounded-lg p-6 mb-8">
<h2 class="text-2xl font-bold text-gray-900 mb-6">AI-Powered Features</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="p-6 border border-gray-200 rounded-lg hover:shadow-md transition duration-150">
<div class="flex items-center mb-4">
<div class="p-3 bg-indigo-100 rounded-full mr-4">
<i data-feather="shield" class="h-6 w-6 text-indigo-600"></i>
</div>
<h3 class="text-lg font-medium text-gray-900">Watermark Removal</h3>
</div>
<p class="text-gray-500">Our advanced AI detects and removes watermarks while preserving the original image quality.</p>
</div>
<div class="p-6 border border-gray-200 rounded-lg hover:shadow-md transition duration-150">
<div class="flex items-center mb-4">
<div class="p-3 bg-indigo-100 rounded-full mr-4">
<i data-feather="zap" class="h-6 w-6 text-indigo-600"></i>
</div>
<h3 class="text-lg font-medium text-gray-900">Quality Enhancement</h3>
</div>
<p class="text-gray-500">Enhance blurry or low-quality images to crisp, high-definition versions automatically.</p>
</div>
<div class="p-6 border border-gray-200 rounded-lg hover:shadow-md transition duration-150">
<div class="flex items-center mb-4">
<div class="p-3 bg-indigo-100 rounded-full mr-4">
<i data-feather="cpu" class="h-6 w-6 text-indigo-600"></i>
</div>
<h3 class="text-lg font-medium text-gray-900">Background Removal</h3>
</div>
<p class="text-gray-500">Instantly remove backgrounds with precision, perfect for product photos or creative projects.</p>
</div>
</div>
</div>
<!-- Processing Modal -->
<div id="processingModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
<div class="bg-white rounded-lg p-6 max-w-md w-full">
<div class="flex flex-col items-center">
<div class="relative w-20 h-20 mb-6">
<svg class="progress-ring w-20 h-20" viewBox="0 0 100 100">
<circle class="progress-ring__circle stroke-indigo-100" stroke-width="6" fill="transparent" r="45" cx="50" cy="50"/>
<circle class="progress-ring__circle stroke-indigo-600" stroke-width="6" fill="transparent" r="45" cx="50" cy="50" stroke-dashoffset="283" id="progressCircle"/>
</svg>
<div class="absolute inset-0 flex items-center justify-center">
<i data-feather="cpu" class="h-8 w-8 text-indigo-600 animate-pulse"></i>
</div>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Processing Your Image</h3>
<p class="text-gray-500 text-center mb-4">Our AI is working its magic. This usually takes 10-30 seconds.</p>
<div class="w-full bg-gray-200 rounded-full h-2.5 mb-4">
<div id="progressBar" class="bg-indigo-600 h-2.5 rounded-full" style="width: 0%"></div>
</div>
<p id="progressText" class="text-sm text-gray-500">0% complete</p>
</div>
</div>
</div>
<!-- Result Modal -->
<div id="resultModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
<div class="bg-white rounded-lg p-6 max-w-4xl w-full">
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold text-gray-900">Your Enhanced Image</h3>
<button id="closeResultModal" class="text-gray-400 hover:text-gray-500">
<i data-feather="x"></i>
</button>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div>
<h4 class="text-sm font-medium text-gray-500 mb-2">Original</h4>
<img id="originalResult" src="" alt="Original" class="w-full rounded-lg border border-gray-200">
</div>
<div>
<h4 class="text-sm font-medium text-gray-500 mb-2">Enhanced</h4>
<img id="enhancedResult" src="" alt="Enhanced" class="w-full rounded-lg border border-gray-200">
</div>
</div>
<div class="flex justify-end space-x-3">
<button id="downloadBtn" class="px-4 py-2 border border-gray-300 rounded-md shadow-sm text-sm font-medium text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
<i data-feather="download" class="mr-2"></i>
Download
</button>
<button id="newEditBtn" class="px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
<i data-feather="edit" class="mr-2"></i>
New Edit
</button>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-white border-t border-gray-200">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-4 md:mb-0">
<i data-feather="aperture" class="text-indigo-600 h-6 w-6"></i>
<span class="ml-2 text-lg font-medium text-gray-900">PixelPerfect AI</span>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-gray-500">
<i data-feather="github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-gray-500">
<i data-feather="twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-gray-500">
<i data-feather="instagram"></i>
</a>
</div>
</div>
<div class="mt-8 pt-8 border-t border-gray-200 flex flex-col md:flex-row justify-between">
<p class="text-sm text-gray-500 mb-4 md:mb-0">
© 2023 PixelPerfect AI. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-sm text-gray-500 hover:text-gray-700">Privacy</a>
<a href="#" class="text-sm text-gray-500 hover:text-gray-700">Terms</a>
<a href="#" class="text-sm text-gray-500 hover:text-gray-700">FAQ</a>
<a href="#" class="text-sm text-gray-500 hover:text-gray-700">Contact</a>
</div>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
feather.replace();
// DOM Elements
const dropzone = document.getElementById('dropzone');
const fileInput = document.getElementById('fileInput');
const uploadBtn = document.getElementById('uploadBtn');
const previewContainer = document.getElementById('previewContainer');
const emptyState = document.getElementById('emptyState');
const imagePreview = document.getElementById('imagePreview');
const fileName = document.getElementById('fileName');
const fileSize = document.getElementById('fileSize');
const processBtn = document.getElementById('processBtn');
const processingModal = document.getElementById('processingModal');
const resultModal = document.getElementById('resultModal');
const closeResultModal = document.getElementById('closeResultModal');
const downloadBtn = document.getElementById('downloadBtn');
const newEditBtn = document.getElementById('newEditBtn');
const originalResult = document.getElementById('originalResult');
const enhancedResult = document.getElementById('enhancedResult');
const progressBar = document.getElementById('progressBar');
const progressText = document.getElementById('progressText');
const progressCircle = document.getElementById('progressCircle');
// Drag and drop functionality
['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => {
dropzone.addEventListener(eventName, preventDefaults, false);
});
function preventDefaults(e) {
e.preventDefault();
e.stopPropagation();
}
['dragenter', 'dragover'].forEach(eventName => {
dropzone.addEventListener(eventName, highlight, false);
});
['dragleave', 'drop'].forEach(eventName => {
dropzone.addEventListener(eventName, unhighlight, false);
});
function highlight() {
dropzone.classList.add('active');
}
function unhighlight() {
dropzone.classList.remove('active');
}
dropzone.addEventListener('drop', handleDrop, false);
function handleDrop(e) {
const dt = e.dataTransfer;
const files = dt.files;
handleFiles(files);
}
uploadBtn.addEventListener('click', () => {
fileInput.click();
});
fileInput.addEventListener('change', () => {
handleFiles(fileInput.files);
});
function handleFiles(files) {
if (files.length === 0) return;
const file = files[0];
if (!file.type.match('image.*')) {
alert('Please select an image file.');
return;
}
if (file.size > 10 * 1024 * 1024) {
alert('File size exceeds 10MB limit.');
return;
}
const reader = new FileReader();
reader.onload = function(e) {
imagePreview.src = e.target.result;
fileName.textContent = file.name;
fileSize.textContent = formatFileSize(file.size);
emptyState.classList.add('hidden');
previewContainer.classList.remove('hidden');
};
reader.readAsDataURL(file);
}
function formatFileSize(bytes) {
if (bytes === 0) return '0 Bytes';
const k = 1024;
const sizes = ['Bytes', 'KB', 'MB', 'GB'];
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
}
// Process button click
processBtn.addEventListener('click', () => {
if (!imagePreview.src) return;
// Show processing modal
processingModal.classList.remove('hidden');
// Simulate processing with progress updates
let progress = 0;
const interval = setInterval(() => {
progress += Math.random() * 10;
if (progress > 100) progress = 100;
// Update progress UI
progressBar.style.width = `${progress}%`;
progressText.textContent = `${Math.round(progress)}% complete`;
const offset = 283 - (283 * progress / 100);
progressCircle.style.strokeDashoffset = offset;
if (progress === 100) {
clearInterval(interval);
setTimeout(() => {
processingModal.classList.add('hidden');
// Show result (in a real app, this would be the AI-processed image)
originalResult.src = imagePreview.src;
enhancedResult.src = imagePreview.src; // In a real app, this would be different
resultModal.classList.remove('hidden');
}, 500);
}
}, 200);
});
// Close result modal
closeResultModal.addEventListener('click', () => {
resultModal.classList.add('hidden');
});
// New edit button
newEditBtn.addEventListener('click', () => {
resultModal.classList.add('hidden');
fileInput.value = '';
emptyState.classList.remove('hidden');
previewContainer.classList.add('hidden');
});
// Download button
downloadBtn.addEventListener('click', () => {
// In a real app, this would download the processed image
alert('In a real application, this would download your enhanced image.');
});
});
</script>
<script>feather.replace();</script>
</body>
</html>
|