cd /news/developer-tools/show-hn-autoportrait-painting-timela… · home topics developer-tools article
[ARTICLE · art-61216] src=github.com ↗ pub= topic=developer-tools verified=true sentiment=↑ positive

Show HN: Autoportrait- Painting Timelapses in JavaScript

Autoportrait, a new JavaScript library, renders any image as a deterministic, reproducible painting timelapse on an HTML canvas, simulating graphite underdrawing and watercolor washes entirely client-side without machine learning. The tool, inspired by Nobel portrait artist Niklas Elmehed, offers configurable choreography, automatic segmentation, and exports to GIF, WebM, or self-contained HTML.

read7 min views1 publishedJul 15, 2026
Show HN: Autoportrait- Painting Timelapses in JavaScript
Image: source

autoportrait renders an image as a timed painting performance on an HTML canvas: a graphite underdrawing traced along the image's edge field, then watercolor washes applied region by region in a configurable order. Analysis runs entirely client side, the full stroke plan is computed before the first frame, and a seeded PRNG makes every performance reproducible and seekable. There are no dependencies and no runtime ML.

autoportrait does not generate a painting. It generates a deterministic painting performance for an existing image.

I love timelapses of painters at work, and I wondered whether the effect could be replicated in software: the underdrawing going down first, the washes pooling, the subject finished before the world behind it. The visual style is inspired by the sketch-then-color announcement portraits Niklas Elmehed paints for the Nobel Prizes. I built the engine for my personal site, where it paints my portrait for each visitor. The animation above plays at the real speed of the default configuration, about 48 seconds.

Playground · Usage · Options · Choreography · How it works

Deterministic. A seed reproduces a painting stroke for stroke.seek(t)

rebuilds the canvas at any instant.Automatic segmentation. k-means in CIELAB with spatial weighting, plus heuristic labels (face

,figure

,sky

,water

,dark

,warm

) that the ordering options understand.Choreography control. Presets, an explicit region order, focus points, or a callback over the full stroke plan.Optional figure mask. With a subject mask, figure and background paint on separate layers and the background can arrive behind a finished subject. A one-command script generates the mask.Events. Caption, progress, and ready callbacks for building UI around the performance.

philipweiss.net/autoportrait hosts the playground. Pick a sample painting or upload your own picture, steer the choreography with presets and focus points, scrub the timeline (the colored track marks the acts), and export the result as a GIF, a WebM video, or a self-contained HTML page that repaints it. Everything runs in the browser; uploads never leave your machine.

npm install autoportrait

Or skip the build entirely and import from a CDN; the package is plain ES modules:

import { paint } from "https://cdn.jsdelivr.net/npm/autoportrait@0.1/src/index.js";
js
<canvas id="c"></canvas>
<script type="module">
  import { paint } from "autoportrait";

  const painting = paint(document.getElementById("c"), {
    image: "me.jpg",
    mask: "me-mask.png", // optional, see tools/make_mask.py
    seed: 42,
  });
</script>

The returned object exposes ()

, resume()

, seek(t)

, repaint()

, finish()

, palette()

, dispose()

, and a ready

promise.

In React (or any framework), the same call runs in a mount effect; there is no framework wrapper to install:

function Portrait({ image, seed }) {
  const ref = useRef(null);
  useEffect(() => {
    const painting = paint(ref.current, { image, seed });
    return () => painting.dispose();
  }, [image, seed]);
  return <canvas ref={ref} />;
}

Input quality notes:

  • The engine performs the input's pixels without restyling them. Any image works, and plain photographs come out respectably, since the sketch and the region-by-region reveal carry the effect. Input that already looks like watercolor looks the best. See preparing the input. prefers-reduced-motion

visitors get the finished painting immediately (configurable viarespectReducedMotion

).

option default description
image
required URL, HTMLImageElement , or ImageBitmap
mask
none figure mask (white subject on black); enables layered reveal
seed
random reproduces a performance exactly
preset
"portraitist"
"portraitist" , "landscapist" , or "printmaker"
order
none array of region names/tags; overrides the preset ordering
focus
none [{x, y}] in canvas fractions; regions paint by distance
plan
none (plan) => plan callback over the final stroke schedule
tempo
1
global speed multiplier
acts.sketch
13
seconds of underdrawing; 0 skips it
acts.wash
30
seconds of watercolor
acts.dry
2.4
seconds of drying at the end
brushes.big
110
wet-pass stamp radius, canvas px
brushes.small
55
refining-pass stamp radius
regions.k
7
target cluster count for segmentation
paper
"#fbf6ea"
background color
resolution
1000
internal long-edge resolution
autostart
true
paint on load, or wait for .play()
respectReducedMotion
true
reduced-motion visitors get the finished frame
onCaption
none (text, phase) narration events
onProgress
none (t, total) per frame
onReady
none ({seed, regions}) after analysis

Four mechanisms control paint order, from coarse to fine.

Presets. portraitist

paints subject regions first and revisits the face with small brushes at the end. landscapist

paints background regions first. printmaker

completes the entire underdrawing, then applies washes ordered by lightness.

paint(canvas, { image, preset: "landscapist" });

Region order. Names and tags from the segmentation, painted in the order listed. Unlisted regions follow.

paint(canvas, { image, mask, order: ["figure", "face", "sky", "background"] });

Focus points. Regions and sub-areas paint in order of distance from the nearest point.

paint(canvas, { image, focus: [{ x: 0.3, y: 0.6 }] });

Plan callback. Receives the computed schedule (an array of stroke groups with times, kinds, clip layers, and region names) before playback. Whatever it returns is what plays.

paint(canvas, {
  image,
  plan(p) {
    p.groups.reverse();
    return p;
  },
});

To make an autoportrait image, the image is pipelined in three phases: analysis (what does the image contain), planning (every mark and its timestamp), and playback (replay the plan against a clock).

The sketch layer is color dodge: luminance

where

On a 4x-downsampled grid, central differences give a gradient

the gradient rotated ninety degrees, so strokes run along edges rather than across them. A contour stroke seeds wherever magnitude exceeds a threshold and advects four to seven segments, blending its heading toward the local tangent with bounded jitter at each step.

Washes are applied per region, so segmentation determines the structure of the performance. Cells are clustered by k-means over

CIELAB color, where Euclidean distance approximates perceptual color difference, plus position at a weight figure

/background

, light

, dark

, warm

, cool

, sky

, water

, greenery

), and a skin-tone prior over the upper figure promotes one cluster to face

. These labels are the vocabulary that order

and the presets match against.

When a mask is supplied, figure and background cluster independently and reveal through separate compositing layers. The mask boundary is feathered a few pixels so washes bleed slightly across the silhouette, which matches how wet media behaves and avoids a hard cutout edge.

Each region splits into one to four spatial sub-areas (k-means on position), and each sub-area gets two passes of wash stamps: large low-alpha blooms first, then smaller refining ones. Stamp positions are sampled inside the sub-area; stamp order is a greedy nearest-neighbor walk, so consecutive stamps are adjacent and the brush appears to travel. Bloom lobe geometry is generated at plan time from the seeded PRNG. The renderer adds no randomness, which is what makes a seed reproduce a painting exactly.

Marks are never drawn in color. Strokes and stamps accumulate as white marks in offscreen reveal masks, and the compositor shows the sketch layer or the source image wherever the corresponding mask has been touched, multiplied into the paper tone. Drying is a per-frame pass that raises the color masks toward full reveal while the sketch layer fades to about a third of its strength.

Two preprocessing steps improve results, both optional:

Figure mask. tools/make_mask.py

runs u2net_human_seg (via rembg) and writes the mask the engine expects:

pip install rembg pillow
python3 tools/make_mask.py photo.jpg

Painterly stylization. The demo portrait was generated with an image model (GPT image generation) from a prompt along these lines:

A loose watercolor painting of this photo, warm palette, soft wet-on-wet washes, paper texture visible at the edges, no hard photographic detail.

tools/watercolorize.py

is an offline alternative (median filtering, edge darkening, paper grain). Its output is serviceable; the image-model route produces better paintings.

src/            library source (ES modules)
demo/           playground app (vite)
tools/          python preprocessing + README media generators
test/           deterministic smoke test
docs/media/     README figures, rendered by the engine
npm install
npm run dev        # playground on localhost
npm test           # paints twice with one seed, asserts identical pixels
npm run figures    # regenerate README figures
npm run hero       # regenerate the hero gif

Every figure in this README is rendered by the library from a fixed seed, so documentation drift shows up as an image diff.

MIT. The demo portrait is the author; run the engine on it locally, but please don't reuse the image itself in other projects.

── more in #developer-tools 4 stories · sorted by recency
── more on @autoportrait 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/show-hn-autoportrait…] indexed:0 read:7min 2026-07-15 ·