Pixtex
Creators

Images for n8n templates and tutorials

By Muhammad Muneeb · · 5 min read

For an n8n template, the diagram is the sales page — buyers judge the build from the picture before they read a word. Render it from the workflow JSON rather than screenshotting: you get a consistent house style across every listing, frame presets sized for Open Graph cards, YouTube thumbnails and square posts, and a one-command re-render when you revise the template.

The picture is the product page

Somebody browsing templates makes a judgement in about two seconds, from the image alone: is this a real build or three nodes and a prayer, and does it look like it was made by someone who cares. Both questions are answered by the diagram, and neither is answered by a screenshot of a zoomed-out canvas with a browser tab bar across the top.

This is also why a consistent style matters more here than anywhere else. Ten listings that share a background, an icon pack and a frame read as a catalogue. Ten screenshots taken on different days read as a folder.

Lock a house style once

Set it by eye in the editor until it looks right, then keep the option names — the API takes exactly the same ones, so your style becomes a snippet you paste into every render:

options
{
  "background": "midnight",
  "iconPack":   "n8n",
  "nodeDetail": "standard",
  "frame":      "og",
  "scale":      2,
  "showTitle":  true
}
  • Icon pack. n8n uses the real node icons, which buyers recognise instantly — usually the right choice for a listing. custom is the cleaner, more uniform look, better when the diagram sits inside your own branding.
  • Frame. og for link previews and marketplace headers, youtube for video thumbnails, square for Instagram and most template grids, auto when the diagram stands alone.
  • Background. Dark reads as technical and hides JPEG artefacts; white and paper suit a light marketplace theme. Pick one and never change it.
  • Node detail. standard for most, minimal once a flow passes roughly 30 nodes and the labels start colliding at thumbnail size.

Rendering a library in one pass

If you keep your templates as JSON files, the whole catalogue is a loop. Same options every time, so every listing matches:

shell
# style.json holds the options above — one file, every listing
for f in templates/*.json; do
  npx pixtex render "$f" --options style.json \
    -o "images/$(basename "${f%.json}").png"
done

pixtex render --help lists every option as a flag if you would rather pass them inline than keep a file.

Revised a template? Re-run the one file. If the image is embedded somewhere you do not control — a marketplace listing, a Notion page, someone else's round-up post — host it instead and re-render the same URL in place, which is the hosted-image pattern.

For tutorials and course material

  • Show the finished flow first. One overview image at the top of the article tells the reader what they are building before the first instruction. It also becomes the social card.
  • Build it up in stages. Render the same workflow after each section, with the new connections highlighted and the earlier ones dimmed. The layout stays put, so the reader watches one diagram grow instead of comparing five.
  • Label the connections. A wire labelled only if in stock teaches the logic in a way a node name cannot.
  • Export at 3× for video. Screen recordings scale and re-compress; the extra resolution is what survives it.
Pasting an n8n.io template linkstraight into the editor fetches that template's workflow, which is the fastest way to produce a picture of a template you are writing about — including somebody else's, when you are reviewing or rounding up.

Questions

What image should an n8n template listing use?

The workflow itself, rendered cleanly and cropped to nothing. Buyers are trying to judge how complete and how complicated the build is, and the diagram answers both questions instantly. A logo collage or a stock illustration answers neither.

What size should the thumbnail be?

Match the destination. Open Graph cards want 1200×630, YouTube thumbnails 1280×720, and most marketplaces prefer a square. Pixtex has frame presets for all three, so the same workflow renders to the right proportions without cropping.

Can I make images for a whole library of templates at once?

Yes — the render API takes the same options the editor does, so a loop over your workflow files renders every listing image with identical styling. Free API keys allow 300 renders a month.

Try it on your own workflow

Drop a workflow JSON file on the editor and export a PNG, SVG or PDF. Free, no account, nothing to install.

read next