1001Ferramentas
πŸ’΅ Generators

Guilloche Pattern SVG Generator

Generate interlocking guilloche patterns in SVG used in banknotes, certificates and stamps, with control over radii, nodes and rotational symmetry.


  

Guilloche: the anti-counterfeiting pattern that became luxury design

Guilloche (from French guillochis, attributed to an 18th-century artisan named Guillot) is a family of repetitive interweaving curves built from rotational symmetry plus spirograph/Lissajous-style mathematics. Decorative versions appear on ancient Egyptian, Greek and Roman friezes, but the modern technique exploded in Renaissance Switzerland, where watchmakers adapted a tool called the rose engine lathe β€” a hand-cranked, gear-driven mechanical lathe β€” to engrave the patterns onto metal watch dials. Today guilloche has two parallel lives: as a security feature on banknotes, passports and certificates, and as a luxury aesthetic in haute horlogerie.

Why guilloche fights counterfeiters

Guilloche works as an anti-counterfeiting layer because the patterns are made of extremely thin, continuous lines with mathematically precise interweaving. Any common photocopier or inkjet printer blurs the fine strokes β€” a copied banknote loses sharpness instantly, and even a high-end scanner introduces moirΓ© that a human eye spots. Designers tune the line frequency just above the resolution of consumer copy machines, creating an asymmetric arms race between mint and forger. You will find guilloche on:

  • Banknotes β€” Euro, US Dollar and Brazilian Real all feature engraved guilloche backgrounds. The BRL is designed by Casa da Moeda do Brasil.
  • Passports β€” guilloche fills the page borders and photo overlay.
  • Stock and bond certificates β€” historical Wall Street paper securities used dense guilloche frames.
  • Government IDs, diplomas, gift vouchers β€” wherever low-cost photocopying must fail.

From rose engine lathe to digital SVG

A traditional rose engine lathe rotates a metal blank against a cutter while a set of cams ("rosettes") modulates the cutter's position β€” the lathe itself "computes" the parametric curve mechanically. Master engravers at Breguet, Patek Philippe and A. Lange & SΓΆhne still hand-cut guilloche dials in this way; a fully hand-engraved dial can take days of work and adds USD 5,000–50,000 to a watch's price. Digital reproduction uses the same math: combine sines, cosines and rotations to generate thousands of points, then emit them as an SVG <path>. A typical formula for one layer is:

x(t) = R * cos(t) + r * cos(n * t + Ο†)
y(t) = R * sin(t) + r * sin(n * t + Ο†)

Stacking several layers with different n (number of nodes) and phase offsets produces the woven rosettes we associate with guilloche.

Modern security alongside guilloche

Guilloche is no longer alone on a banknote. It is now combined with holograms, RFID chips, microprinting, OVI (Optically Variable Ink) and intaglio (relief) printing. But it remains the visual layer most associated with "official document" β€” which is why bank apps, blockchain "certificates" and even crypto NFT art have started borrowing the look to signal seriousness.

Tools and libraries

  • guillocheonline.com β€” browser-based generator.
  • p5.js and Processing β€” common environments for parametric guilloche art.
  • ImageMagick β€” handy when you need PNG output for embedding into design files.
  • 3D printing reproduces the texture visually, but the absence of metal sheen makes the result feel synthetic next to a hand-engraved dial.

FAQ

Is guilloche actually hard to reproduce? Yes β€” the line frequencies are tuned to defeat consumer copy machines, and the inks/papers used by mints add further moirΓ© and microprinting layers a forger cannot replicate cheaply.

Is it legal to use guilloche patterns in my own designs? The aesthetic itself is in the public domain β€” anyone can generate guilloche for branding, packaging or art. What is illegal is using it to imitate real banknotes or government documents.

Are rose engine lathes still made? They are extremely rare and command six-figure prices. Companies like Holzapffel (now defunct) made the legendary ones; modern recreations come from small workshops in Switzerland and the UK.

What does an SVG guilloche look like under the hood? A few thousand line segments computed from layered sin/cos formulas, wrapped in a single <path> with a very thin stroke-width (typically 0.3–0.8 px) β€” small text, big visual density.

Related Tools