-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Per Layer/Object Support for SVG images #23
Comments
Hi, I currently don't have time to make upgrades/changes in this project, and .svg support was not a thing I was thinking on implementing. If/when I have sometime I will see if it possible to add support. Regarding #10 that is a javascript problem, you can see a quick example or get a starting point to batch multiple files on the tests page ( html and javascript ) live. |
Hello, I ducktaped some of the Ideas I suggested: The process consists in: repeating the SVG file muliple times, but making every unused layer invisible - then generating multiple The first problem i'm finding is that I wonder if it's possible to crop those px canvases to remove those 100% invisible pixels, like this: Will that break the pixel generator? The second problem I'm having is that, the app does not know how to deal with assets that are semi-transparent by the artist's choice: To solve this, I'm considering moving the opacity attributes to the The problem here is that those properties can be anywhere depending the app used to create the SVG file. Then comes: I mean, there are e lot impredictable stuff when dealing with SVG files. Well, that's what I've been fiddling with your tool, thanks so much for making it in the first place! I'm also having some Ideas by making something similar to That with some variation of the Could help breaking a png file into multiple layers, helping us implementing a more accurate pixel art generator... |
I'm on a quest to find a way to convert Vector Images to pixel art, as on the "Out of this World" game.
Here's a discussion on it:
aseprite/aseprite#2704 (comment)
Maybe a way to have this to implement pixelit on svg files but with a twist,
The effect would be reapplied multiple times on each layer/object from the svg file, That would be:
The final result would be something close to the image bellow
Today pixelit does something similar to this:
It's also important to check issue #10 in order to this gimmicky suggestion to work.
Maybe this suggestion could also be expanded to all kind of images, by using some kind of posterize effect + breaking the image into multiple images depending on the color used.
Thanks for the amazing work
The text was updated successfully, but these errors were encountered: