Exporting & Formats

How to get a finished file out of a tool - picking the right format, setting the output size, and what each option does. Like everything else, export happens on your device; nothing is uploaded.

How export works

The preview is the file. When you export, the host renders that canvas to the format you chose and hands you a download (or puts it on your clipboard). A tool only offers the formats its author declared, and the picker hides any your browser can't produce (see Video).

Three paths produce a file. Most tools render the canvas to the chosen format. Text and data formats (HTML, MD, TXT, JSON, CSV, ICS, VCF) are instead generated from the tool's content, not rasterised from the picture. And privacy utilities (e.g. Strip Hidden Data) use a third path: the file you pick is transformed byte-for-byte on device and handed straight back - no canvas, no watermark, and no provenance metadata added, because it's already your own file.

The actions in the export controls:

(A tool's author picks which of these appear; the default set is Copy, Download, and Save.)

The export panel - format, size and the Copy / Download / Save / Share actions

Share opens over the tool, with the link already built and the on-visit toggles under it.

Rendering many at once

A single export is one file, but you can render many in one pass - each delivered as one .zip:

A saved session can also be re-shared as a tool link from Projects (it reconstructs the tool URL from the saved inputs), so a link reopens it with the exact same settings.

Choosing a format

The filename and the format picker sit at the top of the panel as one name.format pair, and the picker lists only the formats this tool's author declared.

The filename field fused to the format picker, so the export reads as one name.format pair

You want…UseWhy
Crisp logos / artwork that scalesSVGVector - infinitely scalable, tiny, editable
Vector for Office / Windows appsEMFPastes as editable vector into PowerPoint / Word
Vector for print / design appsEPS, or EPS (CMYK)PostScript vector for Illustrator / press workflows
Vector for cutting / CAD machinesDXFLaser cutters, vinyl plotters, CNC - outline paths in millimetres
An editable slide deckPowerPoint (PPTX)Native editable text + shapes, with images and vectors kept extractable
A photo or general-purpose imagePNG (lossless) or JPG (smaller)Universal raster
Smaller modern imagesWebP / AVIFBetter compression, alpha
PrintPDF, or Print PDF (CMYK)True page size; CMYK for press
Print raster for a pressPrint TIFF (CMYK)DeviceCMYK pixels for a RIP
Animated for the webGIFWorks everywhere, larger files
Animated with full colour + real alphaAPNGAnimated PNG - no palette limit, true transparency
Animated, smallest fileAnimated WebPFull colour + alpha, better-compressed than GIF or APNG
Animated vector that scalesAnimated SVGSelf-contained; loops in a browser or <img>, no codec, any size
Video for social / sharingMP4 or WebMBest quality-per-byte (see below)
Rich text / email signatureHTMLPastes formatted into mail clients
Plain contentMD / TXTText only
A calendar eventICSImports into any calendar app
A contact cardVCFImports into Contacts / address books
Structured data to re-importJSON / CSVRound-trips the tool's content
A faviconICOMulti-size site icon (ZIP bundles several formats)

The first row is the common case. A wordmark set in your brand face exports as SVG, where every letter is an outlined path rather than a pixel, so it stays crisp at a business-card size and at a building-wrap size from the same file.

A hairline wide-tracked wordmark reading Aurora, the kind of pure vector artwork the SVG row of the table is about

Size & print units

By default exports use the tool's native pixel size. Where a tool exposes dimensions, you can set width × height and a unit:

To get a higher-resolution raster, enter a larger width/height, or choose a physical unit and raise the DPI (pixels = size × DPI). There's no one-click scale toggle.

Example: width 210, height 297, unit mm → an A4 page.

The dimensions row set to 210 by 297 mm, with the DPI field revealed because the unit is physical

Multi-page PDF

Some tools build a multi-page PDF document instead of a single artwork - a cover, content that flows onto as many pages as it needs, and a back page, all in one file (see the Multi-Page PDF tool). Each page is a true PDF page sized to that page's box, so readers and printers get real pages, not one tall image.

Multi-page PDFs are RGB documents and don't carry crop/bleed marks - those belong to the single-page Print PDF path above. They do carry the same PDF/X-4 metadata as every PDF export (page boxes, XMP, document ID, an sRGB output intent with embedded profile), and they offer Content Credentials (below) - on the Multi-Page PDF tool the option comes pre-selected.

PowerPoint (PPTX)

Multi-page and layout tools (Carousel, Doc Studio, Multi-Page PDF, the chart tools, and the single-canvas card/layout tools) can export a PowerPoint deck - one slide per page. The point isn't a pixel-perfect screenshot; it's to hand a colleague a deck they can actually edit and take assets out of. So each page is decomposed into native objects:

Layout is approximate by design - the goal is faithful, reusable content, not a locked screenshot. Anything the walker can't express natively (a complex filtered or masked region) is embedded as a picture so nothing is lost. A deck has a single slide size, taken from the first page.

PowerPoint is also a way in - the format round-trips. Deck Builder opens an existing .pptx as editable slides, snapped to your brand, and the Rebrand a Deck utility re-themes a deck in place - theme palette, hardcoded colours and fonts - without touching its charts, SmartArt or animations, handing back a .pptx. See Import a design → Decks and documents.

DXF (cut files)

Vector tools (Brand Lockup, QR Code, Street Map, Wayfinding Signage, Pose Geeko, the logo lockups, Diagram Builder) can export DXF - the AutoCAD R12 interchange format that laser cutters, vinyl plotters and CNC/CAD software read. Geometry is written as outline paths in millimetres (curves flattened to a fine tolerance), text is outlined to paths, and colour lands as the nearest AutoCAD Color Index (which typically drives the tool/operation on a cutter). DXF is line-art only - a photographic or filtered region has no cut-path form and is dropped (Lolly warns), so use SVG/PDF when you need to keep raster content.

Street Map is the clearest case: the whole design is already strokes, so every road and canal becomes a cut path with nothing to drop.

A Street Map render of Paris in ink on cream - pure line art, so every stroke survives the trip to a cutter

Animated SVG

Motion tools (Animated Ad, Lottie Ad, Bag Video) can export Animated SVG - a self-contained, vector animation. Unlike GIF/APNG/WebP (which sample each frame to pixels), an animated SVG stacks vector snapshots with embedded CSS keyframes, so it scales to any size with no codec and no external runtime - it loops in a browser tab or an <img>. Text stays outlined so it renders anywhere. It shares the animated formats' Duration / frame-rate controls, and (being heavier per frame than a bitmap) uses a lower default frame rate.

Transparency

Tools that support it offer a transparent background toggle (e.g. No BG). Transparency is preserved by PNG, WebP, AVIF, SVG (still and animated), APNG and Animated WebP. JPG and PDF are always opaque.

Colour profiles

So colours reproduce faithfully in colour-managed apps (print shops, Photoshop, browsers), exports are tagged with a colour profile:

This is automatic - no setting to fiddle with. Thumbnails and previews skip the tag to stay small.

Video

Animated tools export motion as MP4, WebM, or GIF - and, where offered, APNG, Animated WebP or the vector Animated SVG (above). Which video container you see depends on your browser - the picker only shows what it can actually record:

BrowserShows
Safari / iOSMP4
FirefoxWebM
Chrome / Edge 126+ / AndroidMP4 and WebM
Older ChromeWebM

GIF works everywhere (great for chat/email; larger and lower-colour than video). Animated tools also expose Wait (seconds to let the animation settle before recording) and Duration (clip length).

A shared ?format=… link that requests a container your browser can't record gracefully falls back to the other and names the file accordingly.

Sound. Video exports aren't silent. A tool can lay a music bed under the clip - an audio asset from the catalogue, looped or trimmed to the clip length, with fade-in/out, volume, and automatic ducking under the footage's own sound - and the recording tools carry their footage's live audio straight through to the file. MP4 and WebM keep the mixed track; GIF and the animated image formats (APNG, Animated WebP, Animated SVG) are silent by nature.

Audio

Some tools export audio on its own, not just as a video track. The Voice Recorder captures a mic take with a live level meter and gentle coaching, then saves it as MP3 (the default, transcoded in your browser) or in its native container - M4A (AAC), OGG or WebM (Opus), whichever your browser recorded. As with everything else, the encode happens on your device - nothing is uploaded.

Audio you bring in is just as broad. The asset picker accepts MP3, WAV, OGG/Opus, M4A/AAC and FLAC (kept byte-for-byte and decoded on-device), MIDI (.mid - converted on import to a tiny on-device synth track), and tracker modules - MOD, XM, IT, S3M, STM, MTM (decoded on-device by a bundled player, a few kilobytes of song data). Any of these can become the music bed under a video export, or play in Neurospicy Mode's ambient player.

Audio isn't part of the format= / --export= pipeline below - it comes out of the recording tools' capture flow, so it isn't a shareable-link format id.

Provenance & watermark

Where the format supports it, exports carry provenance metadata - software, source, the tool's name, and your profile credit line - embedded natively (PNG iTXt, JPEG EXIF, PDF info, SVG <metadata>, GIF comment). It's authorship only; nothing is uploaded. Experimental tools additionally stamp a visible watermark, applied by the host so it can't be removed by editing the tool.

The Lolly Imprint. Raster exports also carry Lolly's own invisible pixel watermark - the Lolly Imprint - on by default, just like Content Credentials. Where the credential and the provenance metadata travel alongside the pixels and are lost to a re-save, a screenshot, or a metadata strip, the Imprint lives in the pixels and survives recompression - so a copy of the image can still be recognised as Lolly-made later. It's a durable hint, not a cryptographic guarantee, and it's presence-only (it carries no personal data). It rides in PNG, JPG, WebP, AVIF and TIFF, and in the Lolly-rendered rasters composited into a PDF or PPTX - never in an image you embedded, only in what Lolly itself renders. Uncheck the Lolly Imprint card in the export panel to skip it, or pass imprint=0 in a share link. (AVIF survival through re-encoding isn't calibrated yet; PDF/PPTX detection covers the embedded Lolly rasters.) /verify detects it on-device - see Content Credentials Identity.

Content protection. In the export panel, Password protect, Content Credentials, the Lolly Imprint and print marks fold into one collapsed, format-aware Content protection group, so all of a file's provenance and protection options live in one place - the group shows only the cards that apply to the chosen format.

The Content protection group opened on a PNG export, showing only the cards that apply to it

Composed renders. When a tool embeds another tool's output (e.g. an Event Name Badge embedding a QR Code), the nested render is inlined into the parent's export - it stays a true vector in SVG and PDF and rasterises crisply in PNG/JPG/WebP. The embedded child is an intermediate: it gets no watermark and no provenance of its own; only the finished parent asset does. (Composition covers SVG and the raster formats; HTML/MD/TXT can't be composed.)

Password protection

Two independent kinds of lock, both entirely on-device.

PDF open-password - the export panel's Password protect card offers two tiers:

The Password protect card expanded on a PDF export, with the password field and the two lock tiers

Either tier is mutually exclusive with Content Credentials (an encrypted PDF can't take the credential).

Locked downloads (whole-zip + defense-in-depth) - a ZIP export (the export panel's ZIP format, which bundles several of a tool's formats), a folder download (Projects → Download), or the batch grid can lock the entire zip with one password, at two tiers:

The same Password protect card in the export panel drives both the PDF and ZIP locks, rewording itself for the chosen format. The one password protects every member - images, SVG, everything, not just PDFs (only the zip container can protect non-PDF files, which have no lock of their own). And it's defense-in-depth: any PDF inside is also individually AES-256-locked with the same password, so a PDF stays locked even after the zip is unpacked. The prompt appears when you start the download; a blank password means no lock.

Password-gated share links - any share link can be encrypted so that opening it asks the recipient for a password. The whole link state is AES-256-encrypted under a key derived from the password (PBKDF2); only ciphertext travels, so the password is never in the link, and decryption happens in the recipient's browser - nothing is sent to a server. Turn it on in the Share dialog. An encrypted link can only be opened in Lolly (it can't be embedded as an image, since that path can't prompt). See URL Mode → Encrypted links.

Content Credentials (C2PA)

Exports can carry Content Credentials - a signed C2PA manifest embedded in the file that records, in a tamper-evident way, that the file was made with Lolly and hasn't been altered since. It's the standards-track version of the provenance metadata above: a cryptographic claim (what made the file, when, by whom, and where) bound to a hash of the file's bytes, so any later edit is detectable by a C2PA-aware viewer. The standard is stewarded by the Content Authenticity Initiative (Adobe, BBC, Microsoft, Nikon and others), so the same credentials Lolly writes are the ones cameras, newsrooms and creative suites are adopting.

The Content Credentials card, pre-ticked, with the credential lifetime beside it

On a phone

The export controls live behind the floating Render button, which opens the Export sheet - same formats, size, copy, download, and share, sized for touch.

Format reference

png · jpg/jpeg · webp · avif · svg · svg-anim (Animated SVG) · emf · eps · eps-cmyk (EPS CMYK) · dxf (cut file) · pdf · pdf-cmyk (Print PDF) · cmyk-tiff (Print TIFF) · tiff (RGB TIFF) · pptx (PowerPoint) · html · md · txt · json · csv · ics · vcf · ico · zip · webm · mp4 · gif · apng (Animated PNG) · webp-anim (Animated WebP). These ids are also the values for the URL format= parameter and the CLI --export= flag - see URL Mode and CLI.