Cómo funciona

De la órbita a tu pantalla en tres pasos

Generador ligero sin cuenta ni subida de archivos.

Step 01

Escribe tu nombre

Cualquier nombre, palabra o frase corta.

Step 02

Empareja cada letra

Primero secuencial, luego aleatorio para evitar repetirse.

Step 03

Compón el lienzo

Las piezas se agrupan en una sola imagen.

Step 04

Refina o regenera

Si no te gusta, regenera hasta que funcione.

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
  });
}