PhotoAIA

Editor › Browser Image Editor

What can a browser-based image editor actually do in 2026?

A modern browser image editor can process files entirely on-device, work offline after the first load, and use WebAssembly and WebGL2 for real colour management and rendering — no server round trip, no upload. It cannot match unlimited desktop memory, native OS file access, or every codec a desktop app supports.

What actually happens in the browser

PhotoAIA runs entirely client-side. Files are decoded, edited and re-encoded on your device using WebAssembly (for colour management, via LittleCMS) and WebGL2 (for rendering and compositing). Nothing is uploaded to a server as part of normal editing.

This is a genuine architectural choice, not a marketing claim: there is no upload step in the editing path, so there is nothing for a server to see.

What browser editing genuinely gives you

How it actually works

The honest limits of a browser editor

The technology, briefly

PieceWhat it does
WebAssembly (LittleCMS)Runs real ICC colour management and CMYK separation at near-native speed, in-browser.
WebGL2 renderer (2D fallback)GPU-accelerated canvas rendering and compositing; falls back to a plain 2D canvas if WebGL2 is unavailable.
Web WorkersOffload heavy transforms (e.g. rotation) off the main thread using transferable buffers, so the UI stays responsive.
Tile storage + dirty-region recompositingOnly the changed rectangle of the document is recomposited on each edit, not the whole canvas.
IndexedDBLocal storage for autosave snapshots and uploaded fonts — never file contents leave the device through this.
Service worker / offline app shellCaches the app so it opens and keeps working without a network connection after the first load.

What the numbers actually say

Architecture claims are only useful if they hold under a real workload. PhotoAIA publishes a reproducible engine benchmark (scripts/bench.ts, median of 5 runs) run on a deliberate worst case: a 4000×3000px, 12-layer document where every layer has partial alpha, so every layer blends on every pixel of every edit.

On that fixture: a 500-point brush stroke applies in 36ms, a 256×256 dirty-region recomposite takes 57ms, and saving the document takes 4.7s (a prior version took 7.5s — save compression was retuned from deflate level 6 to level 3, which measured 37% faster and smaller). The remaining big costs — a roughly 11-second cold CPU flatten and a single-threaded save path — are exactly the Web-Worker roadmap items still to ship, and they are stated here rather than hidden.

What your browser actually needs

A current desktop browser — Chrome, Edge, Firefox or Safari — with Canvas and WebAssembly support is the baseline requirement. WebGL2 is preferred, for GPU-accelerated compositing, and PhotoAIA falls back automatically to the plain 2D canvas renderer if a browser or device cannot provide a WebGL2 context; the document still opens and edits, only the GPU-accelerated blending is unavailable. Web Workers are used for heavy transforms today but are not a hard requirement in the sense that the app degrades gracefully rather than failing outright.

Phones and small tablets are deliberately routed to a desktop-required notice instead of a cramped or broken editor — this is a browser-based image editor for a desktop browser, not a mobile app.

Is a browser editor "professional" enough for you

If your job is print-focused raster editing with real CMYK, layers and PSD round-trip, a browser editor with this architecture can genuinely cover it. If your job needs RAW, 16-bit colour, huge files near a device's memory ceiling, or certified PDF/X output, you still need desktop software.

PhotoAIA is desktop-browser only — there is no dedicated mobile app, and it is in public beta.

Questions

Does a browser image editor upload my files to a server?
PhotoAIA does not. Editing happens locally in the browser using WebAssembly and WebGL2; files are not uploaded as part of normal use, and file contents or names are never sent as analytics.
Can a browser editor work offline?
Yes, after the first load, through a standard offline app shell that caches the application. This applies to the app itself; opening a new file still requires the file to be on your device already.
Why can't browser editors handle huge files as well as desktop apps?
A browser tab has a memory ceiling set by the browser and device, unlike a desktop app with direct OS memory access. Very large documents can hit that ceiling in the browser in ways a native app would not.
Is browser-based CMYK editing real, or just a preview?
It depends on the editor. PhotoAIA runs LittleCMS in WebAssembly for a genuine ICC-driven separation with selectable profiles and rendering intents — not a fixed preview space. Many browser editors only offer a CMYK preview, not real separation.
Does a browser editor support RAW camera files?
PhotoAIA does not support RAW at all. This is a common gap for browser-based editors generally; check any specific tool before assuming otherwise.

Open the editor