rasterlottie 0.2.1

Pure Rust, headless Lottie rasterizer for deterministic server-side rendering
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(feature = "gif")]
mod gif;
mod prepare;
mod raster;

#[cfg(feature = "gif")]
pub use super::renderer_types::GifRenderConfig;
pub(super) use super::renderer_types::{
    BrushStyle, FillStyle, FrameRenderCache, GradientKind, GradientStopStyle, GradientStyle,
    LayerHierarchyCache, LayerRenderContext, LayerSliceCache, PreparedResources, RenderTransform,
    RepeaterStyle, ShapeCaches, ShapeGroupPlan, ShapePlanCache, ShapeRenderState,
    ShapeRenderableItem, ShapeRenderableKind, ShapeStyles, StaticPathCache, StrokeStyle, TrimStyle,
};
pub use super::renderer_types::{
    ImageAssetResolver, PreparedAnimation, RasterFrame, RenderConfig, Renderer, Rgba8,
};