remove watermarks but sucks

This commit is contained in:
Julian Freeman
2026-01-19 09:21:38 -04:00
parent 713f0885dc
commit 2a468518af
3 changed files with 330 additions and 50 deletions

View File

@@ -183,9 +183,8 @@ const applyAll = () => {
<!-- Auto Detect Controls -->
<div class="flex gap-2">
<button
@click="store.selectedIndex >= 0 && store.detectWatermark(store.selectedIndex)"
@click="store.detectAllWatermarks()"
class="flex-1 bg-blue-600 hover:bg-blue-500 text-white py-2 rounded flex items-center justify-center gap-2 text-sm transition-colors"
:disabled="store.selectedIndex < 0"
>
<Sparkles class="w-4 h-4" /> Auto Detect
</button>
@@ -217,8 +216,17 @@ const applyAll = () => {
</div>
<div class="p-3 bg-red-900/20 border border-red-900/50 rounded text-xs text-red-200">
AI Inpainting is not yet connected. Masking preview only.
AI Inpainting (Diffusion) connected.
</div>
<button
@click="store.selectedIndex >= 0 && store.processInpainting(store.selectedIndex)"
class="w-full bg-red-600 hover:bg-red-500 text-white py-3 rounded font-bold shadow-lg transition-colors flex items-center justify-center gap-2"
:disabled="store.selectedIndex < 0"
>
<Eraser class="w-5 h-5" />
Process Removal
</button>
</div>
</div>