Skip to main content
image&pdf.com

AI Image Tools — Free, On-Device

2+ tools. All browser-based, no uploads, no account needed.

AI image editing used to mean a paid cloud API (Adobe Sensei, Cloudinary, Remove.bg Pro) that uploaded your photo, ran inference on a GPU server, and charged per call. The newer wave runs the same models locally in your browser — no API, no monthly cost, no question of where your photo went after you uploaded it. The three tools on this page are the on-device equivalents of the most-requested cloud AI tools: background removal, image upscaling, and watermark removal.

Each tool downloads its model once on first use (5–80 MB depending on the network) and caches it in IndexedDB; subsequent runs are offline. Inference runs via onnxruntime-web, which compiles to WebAssembly and uses your device's available cores. Performance scales with hardware — a modern laptop processes a 4K photo in 3–8 seconds, a phone in 10–25 seconds. The output never leaves your device, which makes these tools suitable for personal photos, work documents, and any image where the cloud-API trade-off (cost + privacy) was unacceptable.

Common workflows

Real situations these tools were built for.

Cut out a product for e-commerce

For Amazon, Shopify, Etsy listings that require a transparent background or pure white background. The AI isolates the subject without manual masking.

Remove Background

Make a small photo big enough to print

A 600×400 image that needs to print at 8×10 inches will blur if simply enlarged. The AI upscaler reconstructs realistic texture at 4× the original resolution.

AI Upscale

Erase a watermark from your own photo

For photos you own that have a stock-photo or test watermark you need removed. The AI inpaints what was likely behind the watermark from surrounding context.

AI Watermark Remover

Prepare an old scanned photo for sharing

Upscale a low-resolution scan, then remove the background if needed. Two AI passes recover what a single enhancement cannot.

AI Upscale

Choosing between similar tools

Tools that look alike but solve different problems.

AI Upscale vs Sharpen Image

Use the first when
The source is genuinely too small. The AI reconstructs new realistic detail at 4× by inferring plausible texture from training data.
Use the second when
The source is the right size but slightly soft. Sharpen enhances existing edge contrast but cannot recover missing detail — it is mechanical, not generative.

AI Background Remover vs Manual Crop

Use the first when
The subject has complex edges (hair, fur, transparent fabric) that manual cutout would take 20+ minutes to mask.
Use the second when
The subject is a simple geometric shape (logo, document, flat object) and you want pixel-precise control over the cut. Manual crop is faster and exact.

AI Watermark Remover vs Cropping

Use the first when
The watermark is in the middle of the image or covers a critical area you cannot crop away.
Use the second when
The watermark sits in a corner or along an edge you do not need. Crop is simpler, gives a perfect result, and has no AI inference cost.

All AI Image Tools

Grouped by what each tool does.

Frequently asked questions

About this whole category. For tool-specific questions, see each tool page.

Are these tools really running AI on my device?

Yes. Each tool downloads its ONNX model (5–80 MB) once on first use and caches it in IndexedDB. Subsequent runs read the model from the local cache and run inference via onnxruntime-web, which compiles to WebAssembly and uses your device's CPU cores. No request is made to an inference API for the actual processing — the request only happens to download the model on first use.

Why does the first run take so long?

On first use the tool downloads the model file (background removal is ~80 MB, upscale is ~40 MB, watermark removal is ~30 MB). Subsequent runs are 5–10× faster because the model is cached locally. If the cache is cleared (private browsing, manual cache clear), the next run re-downloads.

Which models do you use?

Background removal uses RMBG-1.4 (the open-source segmentation model). Upscaling uses Real-ESRGAN (the open-source super-resolution network). Watermark removal uses LaMa (large mask inpainting). All three are research-grade models that have been ported to ONNX format for in-browser execution. The implementations and weights are visible in the page source.

How does on-device AI compare to Adobe / Canva / Remove.bg?

For these three operations, the on-device models are competitive with the proprietary cloud APIs at the per-image quality level. The trade-offs are different: cloud APIs run on dedicated GPUs and produce 1080p results in under a second; on-device runs on your hardware and may take 3–25 seconds depending on the device. Cloud APIs require a paid plan or per-call cost; on-device is free. Cloud APIs require uploading your image; on-device keeps it on your device.

Will these tools work on my phone?

Yes for background removal and watermark removal — both run comfortably on mid-range phones with 4 GB+ RAM. AI upscaling is more memory-intensive and may fail on phones with very low RAM (older budget Androids); on those devices the upscale tool falls back to a non-AI bicubic interpolation path that produces softer results.

Can I use these results commercially?

Yes — the output is your image, processed by an algorithm running on your device. The underlying ONNX models (RMBG-1.4, Real-ESRGAN, LaMa) are all open-source under permissive licenses (MIT or Apache 2.0). There is no per-use restriction or watermark in the output.

Why use browser-based ai image tools?

On-Device Inference

Models download once and run locally via WebAssembly. No cloud API call per image, no per-use cost.

Open-Source Models

RMBG-1.4 for background, Real-ESRGAN for upscale, LaMa for watermark removal. All permissively licensed.

No Image Upload

Your photo never leaves your device. Suitable for personal photos, work documents, and anything you would not put in a cloud API.