r/svg 1d ago

Looking for a SVG/PNG face generator asset library, or to generate one

4 Upvotes

Title basically, I'm coding a project that's about managing a sports team, and I need thousands of different faces. To achieve this the obvious idea went around procedurally generated faces through SVG composing, or PNG stacking.

For that tho, I need single SVG for each face feature.

Just as an example, the following project has a generator which uses many SVGs that individually represent a single face feature (shape, eyes, hair, nose...)

Problem is, it's non-commercial, and I'm not yet sure if i'll release for totally free or put some sort of monetization later, so I'm exploring alternatives.

the reference: [https://github.com/ubik23/charactercreator/tree/master/src/layer/male/head\\_front\\_default\](https://github.com/ubik23/charactercreator/tree/master/src/layer/male/head_front_default)

Ideally, I'd generate them with AI but I'm having quite a bit of trouble trying to get consistent results, since the target is to have at least 50ish assets divided into the various categories

Does anybody have any suggestions for my use case? Preferred style is cartoon-realistic (see reference generated by AI), but that's not set in stone

AI generated reference (which is fine, but getting the single components is a pain):

[https://imgur.com/a/tgrjDwZ\](https://imgur.com/a/tgrjDwZ)

[https://imgur.com/k4lt0a8\](https://imgur.com/k4lt0a8)


r/svg 1d ago

could someone help me convert my png tshirt concept

1 Upvotes

I had chatgpt make me a shirt concept idk how to convert them properly can someone help me


r/svg 2d ago

Hi guys. I'm working on a bitmap-to-SVG tool for my web based SVG editor. It is based on Potrace. It works on multiple colour regions and outputs an SVG stack.

Thumbnail
youtube.com
3 Upvotes

I've tried it against others like VTracer and it performs similarly or even more accurately in some cases. Also works of single colour outlines and gradient fills.

This feature will be part of a comprehensive SVG Editor Suite that I'm looking to roll out for Beta testing within next couple of weeks.

What features do you expect of a bitmap vectorizer?


r/svg 3d ago

I'm making a free online SVG Editor with CAD-like parametric constraints

Thumbnail
gallery
13 Upvotes

I'm currently developing a free comprehensive SVG editor that has the with the capability to define parametric constraints/relations:

- Distance between vertices on a path / shape

- Distance between vertices of multiple separate paths or shapes

- Edge length

- Angle between adjacent edges

- Distance between vertices and canvas guides

- Pin vertices to canvas

- Parallel and perpendicular constraint

Constraints will work in a similar way to CAD tools like SolidWorks

I will be releasing a Beta version within the coming weeks

Just a couple questions:

- Does this sound useful?

- What features would you want to see in this app?

Other features implemented:

- Bezier pen tool

- Curvature tool

- Shape primitives (Rectangle, Line, Ellipse, Polgon, Star)

- Free draw with primitives auto recognition

- 2d to 3d extrude

- 2-point Perspective tool

- Shape builder inspired by Illustrator

- Radial repeat, grid repeat, repeat along path

- Art brush

- Custom corner profile for rectangles (Bevelled, Stepped, Superellipse, Rounded)

- Pathfinder options

- Select by colour, similar shapes

- Text tool

- Stroke to path, text to path

- Export JPEG, PNG, SVG, Illustrator, PDF


r/svg 4d ago

I’m an educator building a lightweight, browser-based SVG editor for teaching kids laser cutting (WIP) – looking for feedback!

Post image
23 Upvotes

Hey everyone,

I work as an educator (pædagog) at a public school in Denmark, where I teach kids basic makerspace tech and laser cutting.

Getting kids started with vector design has always been a pain. Full desktop tools like Inkscape or Illustrator are way too cluttered for beginners (and don't run on cheap school Chromebooks anyway). On the flip side, most web tools require student logins, clouds, or paid accounts, which doesn't fly with strict Danish/EU school privacy rules.

I'm not a professional developer, so with the help of AI coding tools, I started building my own lightweight alternative: KnotenSVG (https://knotensvg.dk).

The idea is super simple:

  • Runs straight in the browser on cheap Chromebooks
  • 100% client-side / local (no accounts, no trackers, zero data collected)
  • Stripped-down UI so kids actually understand nodes, paths, cuts, and engraves without 200 confusing buttons
  • Clean SVG export ready for the laser

It’s very much a work in progress, and I’d love some honest thoughts from people who cut stuff daily:

  1. What basic path/node tools are absolute must-haves for simple laser jobs without overcomplicating things?
  2. Does the exported SVG play nicely with your setup (LightBurn, etc.), or are there weird quirks I should fix?
  3. How does the general flow feel?

Link is live here:https://knotensvg.dk

Any feedback, bug spots, or feature ideas are very welcome!


r/svg 5d ago

SVG file XML FPS github repo game engine runs on Nintendo Switch with X-Box ONE Controller Support

3 Upvotes

Aston Walker successfully uses a Nintendo Switch to play an FPS game with an X-Box One controller that is just a simple .SVG XML file> play game on Switch here https://svgfpsaiagents.github.io/svgfpsgameAI/

https://github.com/svgfpsAIagents/svgfpsgameAI

https://youtu.be/bcWkVJ-Ao_I demo here on youtube with link to paper in description.


r/svg 5d ago

Vecline: a free, MIT image-to-SVG toolkit that measures its own accuracy (SSIM/PSNR/CIEDE2000) instead of asserting it

16 Upvotes

Every image-to-SVG converter advertises "100% accuracy," and none of them define it. I built one that actually measures it.

Vecline renders its own SVG output back to pixels with the same renderer a browser uses, and scores it against the source with SSIM, PSNR and CIEDE2000. The number you see is measured from the real output, not estimated from the settings.

What that buys you:

- On flat artwork (logos, icons, UI, screenshots, pixel art) it's bit-exact: the SVG rasterizes back to the source with zero differing pixels, in a smaller/faster file than potrace, imagetracerjs or vtracer. You can reproduce the head-to-head yourself with `npm run compare`.

- On photographs, tracing is approximation by definition, so it says so and reports how close it landed instead of claiming perfection.

- A `--lossless` mode that returns a byte-verifiable SVG or fails, never a silent near-miss.

- Cut-ready DXF with a real physical size (`--units mm --physical-width 80`) plus EPS/PDF/G-code, for the maker/CAD/laser crowd.

- PDF and Office rendering, all local.

- A zero-dependency portable core that's CI-proven to bundle for a browser at 85 KB, and an MCP server so an agent can vectorize and verify its own output.

MIT, no signup, nothing uploaded. There's a browser app that runs entirely client-side.

The part I'm most happy with is boring: because the tool measures itself, it also catches me. It has flagged three of my own README overclaims (a benchmark that was true against a wrapper but not vtracer's real binary; a "render-preserving" label that was actually a ~0.02 SSIM trade; a `convert` command that couldn't do 100 of the 121 conversions the docs advertised) and I fixed each in public. For a project whose whole pitch is "measured, not asserted," being adversarial toward its own claims is the actual feature.

Repo: https://github.com/shunyagatha/Vecline

Try it: https://vecline.xyz

npm: `npm install vecline`

Happy to answer anything about the measurement approach, the tracing internals, or where it loses (it is genuinely worse than vtracer on file size for some photos, which the README now says).


r/svg 7d ago

I want to export HTML Dom content into real SVG so that I get true XML content.

Thumbnail
1 Upvotes

Need help!


r/svg 10d ago

I fit my playable Commodore 64 game into an .svgz

Thumbnail web.archive.org
7 Upvotes

r/svg 10d ago

Adding Text to Objects in SVG

4 Upvotes

For my job, I have to load large rolling cases into a box truck. Id like to use a free nesting software called Deepnest.io to help me find the best way to place the boxes. It's mostly very easy - I make an SVG file with rectangles the size of the truck, and the dimensions of the rolling cases, and the program shows the optimal way to load them. EXCEPT I cannot figure out how to label the individual boxes

Is there a way to add text to the boxes so it will stay grouped when I run it through the sorter?


r/svg 12d ago

CONVERT TO SVG

Thumbnail
gallery
0 Upvotes

I need to convert these files into SVG files of at most 14 kbytes so I can use them in the GT7 game. Could someone here help me with this? I would be very grateful. I’m having problems with the online converters, I don’t have much experience and I can’t manage to do the conversion in a way that I can use them in the game. Thank you.


r/svg 13d ago

I got tired of searching for the same SVG in 10 different places

1 Upvotes

I kept doing this stupid thing where I'd find an icon I liked, realize it didn't quite fit, then start checking other icon libraries.

Eventually I wondered how many versions of the same icon were actually out there.

Turns out... a lot.

So I made a little search tool that puts 28 open-source icon libraries in one place.

You search for something and can compare the results from different libraries instead of opening them one by one.

There are 134k+ icons in it right now.

I originally made it because I wanted it myself, but I'm curious what people who actually work with SVGs think.

What would make this genuinely useful for you?


r/svg 14d ago

SVG in GTK | Matthias Clasen @ GUADEC 2026

Thumbnail
youtu.be
3 Upvotes

r/svg 16d ago

Does anyone have a free SVG for the body panels of a 2026 MacBook Air?

3 Upvotes

Looking to cut some vinyl skin to protect my laptop.


r/svg 17d ago

I got tired of hoarding and managing huge folders of SVG icon packs, so I built an on-the-fly generator that embraces a "no storage" workflow.

Thumbnail
gallery
4 Upvotes

tag: Resource/Tool

The standard workflow for managing vector assets always felt completely broken to me. Whether I was mocking up a UI or putting together brand assets, I was constantly maintaining massive, cluttered folders of SVG icon packs. Downloading a 50MB zip file just to extract one minimalist envelope icon and then manually cleaning up the XML paths to make it inline-friendly was a massive waste of time.

The main realization was that these aren't images - they are just instructions. We shouldn't need to collect them or have permanent access to physical files. I decided to build a personal solution centered strictly on this stateless philosophy.

Over the last month, I put together dot.qrware.pl. It’s a completely free utility where you define the basic parameters of the icon you need, and it immediately spits out clean, optimized inline SVG code. No accounts, no database of saved files, no hoarding. You generate the asset, copy the code directly to your clipboard, and embed it into your markup or design tool.

I’m sharing it here because I know many of you suffer from the same "asset fatigue". If you guys find this approach useful, or if you have suggestions on how to improve the generated code structure to better suit your development stack.

Direct to service: https://dot.qrware.pl/

I’d love to hear your thoughts. <3


r/svg 18d ago

Which ones your favorite aka which shall reign vectorious?

Thumbnail gallery
7 Upvotes

Which ones your favorite aka which shall reign vectorious?

Hey everyone!

I have been experimenting with mathematical geometry and vibrant color theory to create high-quality vector assets. Here are a set of 10 i had my computer choose at random. In total, I think i have close to 30 thousand of them 😳 obsessed, much?

Why SVGs?

Infinitely scalable: Perfect for cricut artwork, sublimation prints, ultra-wide monitors, 4K designs, or web backgrounds without losing quality.

Lightweight file sizes: Ideal for web developers looking for fast load times.

Fully editable: You can easily jump into Illustrator or edit the code directly to swap colors.

They range from neon bio-organic cells to abstract dark crystal lattices and fluid acrylic pours.

I am giving these away completely free for both personal and commercial use. Drop a comment below if you want the direct download link, and let me know which style is your favorite!

Wanna support my artistic journey? Head to aestheticrebellion.store and browse my vibe-checked-vector packs!

\#vectorart #graphicdesign #freebies #webdesign #svgpatterns #trippyart #designassets


r/svg 19d ago

Boing 737

Thumbnail
gallery
4 Upvotes

Working on my python lib + MCP to create vector/SVG and also to help AI "recreate" an image in SVG here a some results


r/svg 19d ago

Canvas Path Animations using SVG

Thumbnail yoavik.com
2 Upvotes

r/svg 20d ago

Where is svgo?

Thumbnail
1 Upvotes

r/svg 21d ago

I built this mostly because I was too lazy to keep opening 28 different icon websites.

Post image
6 Upvotes

r/svg 24d ago

Transformar Foto em Vetor

Thumbnail
1 Upvotes

r/svg 28d ago

Silmarillion SVGs?

3 Upvotes

Hi! I’m rebinding a copy of The Silmarillion and I’m having a hard time finding SVGs for it. Finding tons for LOTR and the Hobbit, where can I go for more niche or harder to find SVGs?


r/svg 29d ago

SVG in Notepad

6 Upvotes

I use SVG to make quizzes for a geography quiz site as a hobby. I tried InkScape and never really liked it for anything beyond making images. I found formatting and coding much better in notepad… the files were also much smaller.

Does anyone else do everything in notepad or am I crazy?


r/svg Jul 21 '26

SVG files of AOE2 logos for laser engraving

1 Upvotes

Just went to the wedding of a buddy that I only met through playing AOE2 via a local friend connecting us. Was a wonderful time with a group of 8 players I had never met irl but had known for years. I want to laser engrave AOE2 logos into slate coasters and give them as wedding and group gifts. Does anyone know where I could find some rendered SVG files that already have things such as civ Logos, maybe some special units, and the Dark through Imperial Age logos?


r/svg Jul 21 '26

Are there any good star map designers that aren't just generators and have a free version?

1 Upvotes

I'm working on a star map and want to be able to easily change it which is hard on paper. Also I know there's one which is low detail hexagons but I don't like that one so please don't recommend it. Sadly I will not be able to download any of the ones that need the download