Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
There's also PixelsToSvg https://codepen.io/shshaw/full/XbxvNj , which seems to connect similar pixels into horizontal runs. Unfortunately, it creates multiple variants of the same color, even in its test sprite (for example, #fe3118, #ff3119, #ff3018).
The Aseprite Github has an issue to track this feature https://github.com/aseprite/aseprite/issues/1911 . Like it says, the logic used to draw the marching ants along a selection's border can be transferred to this.
If you only need an SVG that reduces the seams between like pixels when viewing the SVG in say Inkscape or Firefox, I wrote a custom export dialog that draws each unique color as a path while making each pixel rectangle a sub-path. Example:
Not ideal in terms of excess node points, but it was originally written to add borders between each pixel. The Lua is here if you're interested: https://github.com/behreajj/AsepriteAddons/blob/main/dialogs/export/svgExport.lua .