minato981 commited on
Commit
b338dea
·
verified ·
1 Parent(s): 0c880f2

create ai advance app which edit image or remove watermark so preciously that orginal images will not harm

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +415 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Pixelperfect Ai Wizard
3
- emoji: 🌖
4
- colorFrom: red
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: PixelPerfect AI Wizard
3
+ colorFrom: gray
4
+ colorTo: gray
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,416 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>PixelPerfect AI - Advanced Image Editor</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <style>
11
+ .dropzone {
12
+ border: 2px dashed #cbd5e0;
13
+ transition: all 0.3s ease;
14
+ }
15
+ .dropzone.active {
16
+ border-color: #4f46e5;
17
+ background-color: #eef2ff;
18
+ }
19
+ .preview-container {
20
+ position: relative;
21
+ }
22
+ .watermark-overlay {
23
+ position: absolute;
24
+ top: 0;
25
+ left: 0;
26
+ width: 100%;
27
+ height: 100%;
28
+ background-color: rgba(0,0,0,0.5);
29
+ display: flex;
30
+ justify-content: center;
31
+ align-items: center;
32
+ color: white;
33
+ font-weight: bold;
34
+ opacity: 0;
35
+ transition: opacity 0.3s ease;
36
+ }
37
+ .preview-container:hover .watermark-overlay {
38
+ opacity: 1;
39
+ }
40
+ .progress-ring {
41
+ transform: rotate(-90deg);
42
+ }
43
+ .progress-ring__circle {
44
+ stroke-dasharray: 283;
45
+ stroke-dashoffset: 283;
46
+ transition: stroke-dashoffset 0.5s ease;
47
+ }
48
+ </style>
49
+ </head>
50
+ <body class="bg-gray-50 min-h-screen">
51
+ <!-- Navigation -->
52
+ <nav class="bg-white shadow-sm">
53
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
54
+ <div class="flex justify-between h-16">
55
+ <div class="flex items-center">
56
+ <div class="flex-shrink-0 flex items-center">
57
+ <i data-feather="aperture" class="text-indigo-600 h-8 w-8"></i>
58
+ <span class="ml-2 text-xl font-bold text-gray-900">PixelPerfect AI</span>
59
+ </div>
60
+ </div>
61
+ <div class="hidden sm:ml-6 sm:flex sm:items-center">
62
+ <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">
63
+ <i data-feather="user" class="mr-2"></i>
64
+ Sign In
65
+ </button>
66
+ </div>
67
+ </div>
68
+ </div>
69
+ </nav>
70
+
71
+ <!-- Main Content -->
72
+ <main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
73
+ <div class="text-center mb-12">
74
+ <h1 class="text-4xl font-extrabold text-gray-900 sm:text-5xl sm:tracking-tight lg:text-6xl">
75
+ AI-Powered Image <span class="text-indigo-600">Enhancement</span>
76
+ </h1>
77
+ <p class="mt-5 max-w-xl mx-auto text-xl text-gray-500">
78
+ Remove watermarks, enhance quality, and transform your images with our cutting-edge AI technology.
79
+ </p>
80
+ </div>
81
+
82
+ <!-- Upload Section -->
83
+ <div class="bg-white shadow rounded-lg p-6 mb-8">
84
+ <div class="flex flex-col md:flex-row gap-8">
85
+ <!-- Upload Area -->
86
+ <div class="w-full md:w-1/2">
87
+ <div id="dropzone" class="dropzone rounded-lg p-8 text-center cursor-pointer h-64 flex flex-col items-center justify-center">
88
+ <i data-feather="upload" class="h-12 w-12 text-gray-400 mb-4"></i>
89
+ <p class="text-lg font-medium text-gray-700 mb-2">Drag & drop your image here</p>
90
+ <p class="text-sm text-gray-500 mb-4">or click to browse files</p>
91
+ <input type="file" id="fileInput" class="hidden" accept="image/*">
92
+ <button id="uploadBtn" class="px-4 py-2 bg-indigo-600 text-white rounded-md hover:bg-indigo-700 transition duration-150">
93
+ Select Image
94
+ </button>
95
+ <p class="text-xs text-gray-400 mt-4">Supports: JPG, PNG, WEBP (Max 10MB)</p>
96
+ </div>
97
+ </div>
98
+
99
+ <!-- Preview & Actions -->
100
+ <div class="w-full md:w-1/2">
101
+ <div id="previewContainer" class="hidden">
102
+ <div class="preview-container mb-4">
103
+ <img id="imagePreview" src="" alt="Preview" class="w-full h-48 object-contain rounded-lg border border-gray-200">
104
+ <div class="watermark-overlay rounded-lg">
105
+ <span>Click to edit</span>
106
+ </div>
107
+ </div>
108
+ <div class="flex justify-between items-center mb-4">
109
+ <span id="fileName" class="text-sm font-medium text-gray-700 truncate"></span>
110
+ <span id="fileSize" class="text-xs text-gray-500"></span>
111
+ </div>
112
+ <div class="space-y-4">
113
+ <div>
114
+ <label for="editType" class="block text-sm font-medium text-gray-700 mb-1">Edit Type</label>
115
+ <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">
116
+ <option value="watermark">Remove Watermark</option>
117
+ <option value="enhance">Enhance Quality</option>
118
+ <option value="background">Remove Background</option>
119
+ <option value="upscale">Upscale Resolution</option>
120
+ </select>
121
+ </div>
122
+ <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">
123
+ <span>Process Image</span>
124
+ <i data-feather="chevron-right" class="ml-2"></i>
125
+ </button>
126
+ </div>
127
+ </div>
128
+ <div id="emptyState" class="h-full flex flex-col items-center justify-center text-center p-8 bg-gray-50 rounded-lg">
129
+ <i data-feather="image" class="h-10 w-10 text-gray-400 mb-4"></i>
130
+ <h3 class="text-lg font-medium text-gray-900 mb-1">No Image Selected</h3>
131
+ <p class="text-sm text-gray-500">Upload an image to start editing</p>
132
+ </div>
133
+ </div>
134
+ </div>
135
+ </div>
136
+
137
+ <!-- Features Section -->
138
+ <div class="bg-white shadow rounded-lg p-6 mb-8">
139
+ <h2 class="text-2xl font-bold text-gray-900 mb-6">AI-Powered Features</h2>
140
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
141
+ <div class="p-6 border border-gray-200 rounded-lg hover:shadow-md transition duration-150">
142
+ <div class="flex items-center mb-4">
143
+ <div class="p-3 bg-indigo-100 rounded-full mr-4">
144
+ <i data-feather="shield" class="h-6 w-6 text-indigo-600"></i>
145
+ </div>
146
+ <h3 class="text-lg font-medium text-gray-900">Watermark Removal</h3>
147
+ </div>
148
+ <p class="text-gray-500">Our advanced AI detects and removes watermarks while preserving the original image quality.</p>
149
+ </div>
150
+ <div class="p-6 border border-gray-200 rounded-lg hover:shadow-md transition duration-150">
151
+ <div class="flex items-center mb-4">
152
+ <div class="p-3 bg-indigo-100 rounded-full mr-4">
153
+ <i data-feather="zap" class="h-6 w-6 text-indigo-600"></i>
154
+ </div>
155
+ <h3 class="text-lg font-medium text-gray-900">Quality Enhancement</h3>
156
+ </div>
157
+ <p class="text-gray-500">Enhance blurry or low-quality images to crisp, high-definition versions automatically.</p>
158
+ </div>
159
+ <div class="p-6 border border-gray-200 rounded-lg hover:shadow-md transition duration-150">
160
+ <div class="flex items-center mb-4">
161
+ <div class="p-3 bg-indigo-100 rounded-full mr-4">
162
+ <i data-feather="cpu" class="h-6 w-6 text-indigo-600"></i>
163
+ </div>
164
+ <h3 class="text-lg font-medium text-gray-900">Background Removal</h3>
165
+ </div>
166
+ <p class="text-gray-500">Instantly remove backgrounds with precision, perfect for product photos or creative projects.</p>
167
+ </div>
168
+ </div>
169
+ </div>
170
+
171
+ <!-- Processing Modal -->
172
+ <div id="processingModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
173
+ <div class="bg-white rounded-lg p-6 max-w-md w-full">
174
+ <div class="flex flex-col items-center">
175
+ <div class="relative w-20 h-20 mb-6">
176
+ <svg class="progress-ring w-20 h-20" viewBox="0 0 100 100">
177
+ <circle class="progress-ring__circle stroke-indigo-100" stroke-width="6" fill="transparent" r="45" cx="50" cy="50"/>
178
+ <circle class="progress-ring__circle stroke-indigo-600" stroke-width="6" fill="transparent" r="45" cx="50" cy="50" stroke-dashoffset="283" id="progressCircle"/>
179
+ </svg>
180
+ <div class="absolute inset-0 flex items-center justify-center">
181
+ <i data-feather="cpu" class="h-8 w-8 text-indigo-600 animate-pulse"></i>
182
+ </div>
183
+ </div>
184
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Processing Your Image</h3>
185
+ <p class="text-gray-500 text-center mb-4">Our AI is working its magic. This usually takes 10-30 seconds.</p>
186
+ <div class="w-full bg-gray-200 rounded-full h-2.5 mb-4">
187
+ <div id="progressBar" class="bg-indigo-600 h-2.5 rounded-full" style="width: 0%"></div>
188
+ </div>
189
+ <p id="progressText" class="text-sm text-gray-500">0% complete</p>
190
+ </div>
191
+ </div>
192
+ </div>
193
+
194
+ <!-- Result Modal -->
195
+ <div id="resultModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
196
+ <div class="bg-white rounded-lg p-6 max-w-4xl w-full">
197
+ <div class="flex justify-between items-start mb-4">
198
+ <h3 class="text-xl font-bold text-gray-900">Your Enhanced Image</h3>
199
+ <button id="closeResultModal" class="text-gray-400 hover:text-gray-500">
200
+ <i data-feather="x"></i>
201
+ </button>
202
+ </div>
203
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
204
+ <div>
205
+ <h4 class="text-sm font-medium text-gray-500 mb-2">Original</h4>
206
+ <img id="originalResult" src="" alt="Original" class="w-full rounded-lg border border-gray-200">
207
+ </div>
208
+ <div>
209
+ <h4 class="text-sm font-medium text-gray-500 mb-2">Enhanced</h4>
210
+ <img id="enhancedResult" src="" alt="Enhanced" class="w-full rounded-lg border border-gray-200">
211
+ </div>
212
+ </div>
213
+ <div class="flex justify-end space-x-3">
214
+ <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">
215
+ <i data-feather="download" class="mr-2"></i>
216
+ Download
217
+ </button>
218
+ <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">
219
+ <i data-feather="edit" class="mr-2"></i>
220
+ New Edit
221
+ </button>
222
+ </div>
223
+ </div>
224
+ </div>
225
+ </main>
226
+
227
+ <!-- Footer -->
228
+ <footer class="bg-white border-t border-gray-200">
229
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
230
+ <div class="flex flex-col md:flex-row justify-between items-center">
231
+ <div class="flex items-center mb-4 md:mb-0">
232
+ <i data-feather="aperture" class="text-indigo-600 h-6 w-6"></i>
233
+ <span class="ml-2 text-lg font-medium text-gray-900">PixelPerfect AI</span>
234
+ </div>
235
+ <div class="flex space-x-6">
236
+ <a href="#" class="text-gray-400 hover:text-gray-500">
237
+ <i data-feather="github"></i>
238
+ </a>
239
+ <a href="#" class="text-gray-400 hover:text-gray-500">
240
+ <i data-feather="twitter"></i>
241
+ </a>
242
+ <a href="#" class="text-gray-400 hover:text-gray-500">
243
+ <i data-feather="instagram"></i>
244
+ </a>
245
+ </div>
246
+ </div>
247
+ <div class="mt-8 pt-8 border-t border-gray-200 flex flex-col md:flex-row justify-between">
248
+ <p class="text-sm text-gray-500 mb-4 md:mb-0">
249
+ &copy; 2023 PixelPerfect AI. All rights reserved.
250
+ </p>
251
+ <div class="flex space-x-6">
252
+ <a href="#" class="text-sm text-gray-500 hover:text-gray-700">Privacy</a>
253
+ <a href="#" class="text-sm text-gray-500 hover:text-gray-700">Terms</a>
254
+ <a href="#" class="text-sm text-gray-500 hover:text-gray-700">FAQ</a>
255
+ <a href="#" class="text-sm text-gray-500 hover:text-gray-700">Contact</a>
256
+ </div>
257
+ </div>
258
+ </div>
259
+ </footer>
260
+
261
+ <script>
262
+ document.addEventListener('DOMContentLoaded', function() {
263
+ feather.replace();
264
+
265
+ // DOM Elements
266
+ const dropzone = document.getElementById('dropzone');
267
+ const fileInput = document.getElementById('fileInput');
268
+ const uploadBtn = document.getElementById('uploadBtn');
269
+ const previewContainer = document.getElementById('previewContainer');
270
+ const emptyState = document.getElementById('emptyState');
271
+ const imagePreview = document.getElementById('imagePreview');
272
+ const fileName = document.getElementById('fileName');
273
+ const fileSize = document.getElementById('fileSize');
274
+ const processBtn = document.getElementById('processBtn');
275
+ const processingModal = document.getElementById('processingModal');
276
+ const resultModal = document.getElementById('resultModal');
277
+ const closeResultModal = document.getElementById('closeResultModal');
278
+ const downloadBtn = document.getElementById('downloadBtn');
279
+ const newEditBtn = document.getElementById('newEditBtn');
280
+ const originalResult = document.getElementById('originalResult');
281
+ const enhancedResult = document.getElementById('enhancedResult');
282
+ const progressBar = document.getElementById('progressBar');
283
+ const progressText = document.getElementById('progressText');
284
+ const progressCircle = document.getElementById('progressCircle');
285
+
286
+ // Drag and drop functionality
287
+ ['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => {
288
+ dropzone.addEventListener(eventName, preventDefaults, false);
289
+ });
290
+
291
+ function preventDefaults(e) {
292
+ e.preventDefault();
293
+ e.stopPropagation();
294
+ }
295
+
296
+ ['dragenter', 'dragover'].forEach(eventName => {
297
+ dropzone.addEventListener(eventName, highlight, false);
298
+ });
299
+
300
+ ['dragleave', 'drop'].forEach(eventName => {
301
+ dropzone.addEventListener(eventName, unhighlight, false);
302
+ });
303
+
304
+ function highlight() {
305
+ dropzone.classList.add('active');
306
+ }
307
+
308
+ function unhighlight() {
309
+ dropzone.classList.remove('active');
310
+ }
311
+
312
+ dropzone.addEventListener('drop', handleDrop, false);
313
+
314
+ function handleDrop(e) {
315
+ const dt = e.dataTransfer;
316
+ const files = dt.files;
317
+ handleFiles(files);
318
+ }
319
+
320
+ uploadBtn.addEventListener('click', () => {
321
+ fileInput.click();
322
+ });
323
+
324
+ fileInput.addEventListener('change', () => {
325
+ handleFiles(fileInput.files);
326
+ });
327
+
328
+ function handleFiles(files) {
329
+ if (files.length === 0) return;
330
+
331
+ const file = files[0];
332
+ if (!file.type.match('image.*')) {
333
+ alert('Please select an image file.');
334
+ return;
335
+ }
336
+
337
+ if (file.size > 10 * 1024 * 1024) {
338
+ alert('File size exceeds 10MB limit.');
339
+ return;
340
+ }
341
+
342
+ const reader = new FileReader();
343
+ reader.onload = function(e) {
344
+ imagePreview.src = e.target.result;
345
+ fileName.textContent = file.name;
346
+ fileSize.textContent = formatFileSize(file.size);
347
+ emptyState.classList.add('hidden');
348
+ previewContainer.classList.remove('hidden');
349
+ };
350
+ reader.readAsDataURL(file);
351
+ }
352
+
353
+ function formatFileSize(bytes) {
354
+ if (bytes === 0) return '0 Bytes';
355
+ const k = 1024;
356
+ const sizes = ['Bytes', 'KB', 'MB', 'GB'];
357
+ const i = Math.floor(Math.log(bytes) / Math.log(k));
358
+ return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
359
+ }
360
+
361
+ // Process button click
362
+ processBtn.addEventListener('click', () => {
363
+ if (!imagePreview.src) return;
364
+
365
+ // Show processing modal
366
+ processingModal.classList.remove('hidden');
367
+
368
+ // Simulate processing with progress updates
369
+ let progress = 0;
370
+ const interval = setInterval(() => {
371
+ progress += Math.random() * 10;
372
+ if (progress > 100) progress = 100;
373
+
374
+ // Update progress UI
375
+ progressBar.style.width = `${progress}%`;
376
+ progressText.textContent = `${Math.round(progress)}% complete`;
377
+ const offset = 283 - (283 * progress / 100);
378
+ progressCircle.style.strokeDashoffset = offset;
379
+
380
+ if (progress === 100) {
381
+ clearInterval(interval);
382
+ setTimeout(() => {
383
+ processingModal.classList.add('hidden');
384
+
385
+ // Show result (in a real app, this would be the AI-processed image)
386
+ originalResult.src = imagePreview.src;
387
+ enhancedResult.src = imagePreview.src; // In a real app, this would be different
388
+ resultModal.classList.remove('hidden');
389
+ }, 500);
390
+ }
391
+ }, 200);
392
+ });
393
+
394
+ // Close result modal
395
+ closeResultModal.addEventListener('click', () => {
396
+ resultModal.classList.add('hidden');
397
+ });
398
+
399
+ // New edit button
400
+ newEditBtn.addEventListener('click', () => {
401
+ resultModal.classList.add('hidden');
402
+ fileInput.value = '';
403
+ emptyState.classList.remove('hidden');
404
+ previewContainer.classList.add('hidden');
405
+ });
406
+
407
+ // Download button
408
+ downloadBtn.addEventListener('click', () => {
409
+ // In a real app, this would download the processed image
410
+ alert('In a real application, this would download your enhanced image.');
411
+ });
412
+ });
413
+ </script>
414
+ <script>feather.replace();</script>
415
+ </body>
416
  </html>