使い方

軌道から画面まで、3 ステップ

アカウント不要、アップロード不要の軽量ジェネレーター。

Step 01

名前を入力

名前、単語、短いフレーズを入力。

Step 02

各文字をマッチ

順番→ランダムで衛星フレームを選択。

Step 03

キャンバスを合成

宇宙的なグローで一枚の画像にまとめます。

Step 04

微調整・再生成

気に入らなければ再生成で組み替え。

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