Comment ça marche

De l'orbite à votre écran en trois étapes

Un générateur léger qui utilise des lettres style NASA — sans compte, sans envoi de fichiers.

Step 01

Tapez votre nom

Entrez un nom, un mot ou une courte phrase.

Step 02

Associez chaque lettre

Pour chaque lettre, on choisit une image — d'abord en séquence puis aléatoirement.

Step 03

Composez le canevas

Les tuiles sont disposées avec une lueur cosmique en une seule image.

Step 04

Affinez ou recommencez

Pas convaincu ? Relancez jusqu'à ce que ce soit parfait.

The composition algorithm

The satellite name generator stores curated NASA-style frames per letter inside the browser bundle. For every input character we keep an independent counter and pick the next sequential frame; once the supply is exhausted, frames are sampled pseudo-randomly so repeats remain visually unique. Letters are rendered to a canvas and masked into the satellite imagery, then composed into a single export-ready image.

Try the generator
// Per-letter frame picker
function pickFrames(name) {
  const counts = new Map();
  return [...name].map((ch) => {
    const key = ch.toUpperCase();
    const seen = counts.get(key) ?? 0;
    counts.set(key, seen + 1);

    return seen < FRAMES_PER_LETTER
      ? `/letters/${key}/${seen + 1}.webp`   // sequential
      : `/letters/${key}/${rand(1, 3)}.webp`; // random
  });
}