About Organized Image

A photo album maker built on one constraint: your photographs never leave your computer. Everything else about the project follows from that decision.

The problem it was built for

Digital cameras and phones made photographs effectively free, which means most people now own a folder of several thousand images they have never looked through twice. A meaningful fraction are duplicates, bursts of the same moment, or shots that simply did not come out.

Printing a small album from that folder should be a half-hour job. In practice it means scrolling for an hour, hand-picking images, cropping each one, and fighting a layout program that thinks in pixels while your paper is measured in millimetres.

The alternative is uploading everything to a photo-book service — which works, but means handing your family photographs to a company, waiting for gigabytes to upload, and paying per book.

Why local-only

Modern browsers can do the whole job. They read files, decode images, use every CPU core through Web Workers, hash with the same cryptographic primitives a server would, and write PDFs. Once that is true, uploading photographs to a server is not a technical requirement — it is a choice, and one that only adds risk and waiting.

So the tool has no backend at all. That is not a slogan; it is an architecture:

  • There is no server to send photos to, so they cannot be sent.
  • There is no account system, so there is nothing to breach.
  • There is no upload step, so a 4 GB folder starts processing immediately.
  • Cost of running it does not scale with users, so it can stay free.

The trade-off is real: processing speed depends on your machine, and features that genuinely need a server — sharing a link to an album, ordering a professionally printed book — cannot exist here.

How it is built

It is a static web page: React and TypeScript, with a deliberately small dependency list. Where a well-known library would have been the obvious choice, the underlying browser capability was usually enough — hashing uses the built-in Web Crypto API, local storage is a thin wrapper over IndexedDB, and the colour-LUT parser and the cutter's DXF writer are each a few dozen lines.

Two design rules shape most of the code. Physical units are the source of truth: card and paper sizes are millimetres from the editor all the way into the PDF, so no screen pixel ever decides a printed size. And any calculation that affects appearance — cropping, page geometry, colour grading — is shared between the on-screen preview and the PDF exporter, so the preview cannot promise something the print will not deliver.

What it deliberately does not do

A focused tool is more useful than a vague one, and being clear about the edges saves people time:

  • No cloud, accounts or sharing. There is no server.
  • No RAW developing. Browsers cannot develop RAW files. They are tracked and filed, never decoded.
  • No video. Clips are filed by date so they are not left behind, and nothing more.
  • No masks, brushes or local adjustments. Colour looks apply to a whole photo.
  • No print ordering. You print it yourself, or take the PDF to a print shop.

Honest limitations

Worth knowing before you rely on it:

  • Writing to disk is Chromium-only. The File System Access API does not exist in Firefox or Safari, so the folder organiser is hidden there. Everything else works everywhere.
  • Colour is not managed. There is no ICC profile handling, so exact colour depends on your printer and paper. Print a proof first.
  • Cutter geometry is calculated, not measured. Registration marks follow Silhouette's documented values, but machines vary. A calibration sheet settles it in one test print.
  • It is a desktop tool. Phones and tablets lack the file APIs, and print layout on a small screen is unpleasant.

How it is funded

The site is free and carries advertising. Because there are no servers processing photographs, running costs are small, which is what makes free sustainable rather than a prelude to a paywall. Adverts are confined to the surrounding pages and have no access to your photographs or to anything the tool stores locally — see the privacy policy.