Crates.io | inlottie |
lib.rs | inlottie |
version | 0.1.9 |
source | src |
created_at | 2024-05-29 09:17:42.994744 |
updated_at | 2024-06-18 06:48:32.63159 |
description | lib/tool in Rust to load/save/parse/render lottie animation files |
homepage | |
repository | https://github.com/mhfan/inlottie |
max_upload_size | |
id | 1255237 |
size | 666,309 |
The original Lottie json shema file was slightly modified so that the great typify tool could run and convert it into Rust codebase. After extensive manual simplification and optimization efforts, finally, the parser
seems to be very compatible to accept most of the realword sample json files of Lottie Animation without too much compromise.
A simple and straightforward viewer/renderer for Lottie animation was implemented intuitively based on femtovg, yet with many features (Text/Image/Audio/LayerEffect/etc.) to be developed/extended.
Besides, a player/renderer adapted to rive-app for Rive animation based on femtovg is also included, though is currently not capable to support clip path
and blend mode
.
TODO: refer to intvg, development/implement a renderer
based on gpac/evg, blend2d, HTML5/Web Canvas API to support most of Lottie and Rive animation features; and a viewer
based on bevy engine or Dioxus? Then, enhance capability to parse/handle dotLottie.
cargo r -- <path-to-lottie/svg>
cargo r -F rive -- <path-to-rive/lottie/svg>
cargo r -F vello --bin vello -- <path-to-svg>
cargo r -F b2d --bin blend2d -- <path-to-svg>
(with Drag & Drop support)
Note: To build for rive support, first remove comment of line "rive-rs = " in Cargo.toml. Since it isn't published on crates.io yet.