Free · In-browser · No signup · No watermark
Features · Use cases · Run locally · Tech stack · License
BannerGIF Studio turns a line of text and a handful of style choices into a perfectly-looping animated banner — the kind that scrolls across an email header, a website announcement bar, or a popup hero strip.
You can also export the same design as a static JPEG, PNG, or WebP when an animated banner isn't appropriate (Outlook, dark-mode quirks, social-media headers).
Everything happens in your browser. Nothing is uploaded. You get a downloadable file in a click.
- Email designers building Gmail / Mailchimp / Klaviyo headers and announcement strips
- Marketing teams producing sale banners, countdowns, and announcement bars
- Popup designers for Klaviyo, OptinMonster, Privy, Sumo, etc.
- Social-media managers making LinkedIn covers, X/Twitter headers, Discord/Slack banners
- Web designers who need a quick announcement strip without firing up After Effects
Icons live inline in the text editor as chips — click any chip below the input to tune its color, size, padding, and vertical offset. The canvas updates instantly and the same chip layout exports to GIF, PNG, WebP, or JPEG.
Pick between Animated and Static output. Animated produces a looping GIF; static produces a single-frame image in your choice of format.
| Format | Mode | When to use |
|---|---|---|
| GIF | Animated | Default. Universal email-client support. |
| JPEG | Static | Smallest file, lossy compression — good for photographic backgrounds. |
| PNG | Static | Lossless. Outlook fallbacks or when you need pixel-perfect quality. |
| WebP | Static | ~30–50% smaller than PNG. Modern browsers and email clients. |
The preview updates instantly when you switch formats — what you see is exactly what gets exported. Live KB estimate before generation; actual KB after. Success toast confirms when your file is ready.
| Channel | Notes |
|---|---|
| Email header (Gmail / Mailchimp) | Keep GIF under 1 MB for inboxes |
| Klaviyo / OptinMonster popup strip | |
| Website announcement bar | |
| LinkedIn cover | |
| X / Twitter header | |
| Slack / Discord banner |
npm install
npm run devThen open http://localhost:5173.
npm run build
npm run previewStatic output lives in dist/ and deploys to any static host. The included netlify.toml is preconfigured for Netlify.
| Layer | Choice |
|---|---|
| Framework | React 18 + TypeScript |
| Build | Vite 5 |
| Styling | Tailwind CSS 3 |
| GIF encoding | gif.js (Web Worker) |
| JPEG / PNG / WebP encoding | Native HTMLCanvasElement.toBlob() |
| Inline icons | Iconify (200,000+ icons, fetched on demand, cached locally) |
| Emoji | emoji-picker-react |
| UI icons | lucide-react |
| Custom font storage | IndexedDB via idb-keyval |
| Variable-font detection | In-browser TTF/OTF fvar table parser |
| Host | Netlify (static) |
All rendering happens client-side on a single <canvas> — no backend, no API keys, no telemetry.
src/
├── App.tsx – top-level layout, holds BannerConfig + customFonts state
├── types.ts – BannerConfig schema, DEFAULT_CONFIG, catalogs
├── components/
│ ├── ConfigPanel.tsx – sidebar shell + tab bar + Arcady footer
│ ├── GradientEditor.tsx – multi-stop gradient editor with angle dial
│ ├── ShapePicker.tsx – visual shape picker (SVG thumbnails)
│ ├── PreviewArea.tsx – live canvas preview + format toggle + Generate
│ ├── CustomFontModal.tsx – upload + Google Fonts URL importer (multi-file, multi-variant)
│ ├── IconPicker.tsx – Iconify search popover with style filters
│ ├── IconChipRow.tsx – per-icon settings popover (color, size, padding, offset)
│ ├── TextareaWithTokens.tsx – contentEditable editor that renders tokens as inline chips
│ ├── tabs/{Content,Style,Shape,Motion}Tab.tsx
│ └── ui/Field.tsx – Label, ColorField, SliderField (editable), Collapsible, Toggle
└── utils/
├── gifHelper.ts – drawBannerFrame (shared preview + export),
│ segment-aware text + icon rendering,
│ shape path tracing, texture overlays,
│ generateBannerGif, generateStaticImage,
│ measureOutputSizeKB (frame-sampled)
├── customFonts.ts – IndexedDB-backed font store, fvar variable-axis parser,
│ Google Fonts CSS multi-variant importer
└── iconStore.ts – Iconify search + SVG cache + decoded-Image cache,
inline-token parser ({{icon:set:name}})
The preview canvas and the encoders all call drawBannerFrame() so what you see is exactly what you export — every shape, texture, gradient, and effect renders identically across all output formats.
MIT License
Copyright © 2025 Arcady Media Inc
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Developed by Arcady Media Inc
Built with care for designers and marketers who'd rather not fight Photoshop for a 50-pixel banner.




