this post was submitted on 09 Apr 2024
75 points (97.5% liked)
Programmer Humor
32396 readers
977 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
This feels a lot like vector graphics. I would imagine one could automate SVG to CSS translation.
Presumably, tho it might be a little difficult. SVGs use a lot of paths, where you specify the edges of elements. Afaik you can't do that exact thing in CSS but you could probably split it up into a bunch of triangles. Idk how you'd want to do bezier curves tho
Yeah, a one to one conversion might not be possible. Although this example also approximates the image by making it two tone and using simple shapes to compose more complex ones.
It still feels as a non-trivial task tho.