#svg #svg-graphics #graphics-rendering #svg-parser #drawable #rendering #api-bindings

aloe-svg

Aloe-SVG is a Rust library for parsing and rendering SVG files and paths into drawable graphics. It supports transformations, styling, gradients, and complex SVG elements parsing for advanced graphics rendering needs, utilizing extensive traits and structures to facilitate precise graphical operations. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.1 Apr 4, 2025

#12 in #svg-parser


Used in aloe-exports

GPL-3.0 license

1.5MB
14K SLoC

Aloe-SVG

Aloe-SVG is a Rust library designed for efficient parsing and rendering of SVG (Scalable Vector Graphics) files. It provides a comprehensive and robust interface for interpreting SVG elements and paths, facilitating advanced graphical representations. Primarily intended for developers dealing with graphics rendering, this crate leverages Rust's rich type system and performance capabilities to manage SVG structures and drawable objects effortlessly.

Features

  • SVG Parsing: Extract and interpret SVG elements from XML files.
  • Path Parsing: Precise parsing of SVG path data strings into drawable paths.
  • Gradient and Style Management: Utilize sophisticated operations for gradients, transforms, and styling, ensuring adherence to SVG specifications.

Usage

Importing the Crate

To include aloe-svg in your project, add the following to your Cargo.toml:

[dependencies]
aloe-svg = "0.1.0"

Basic Example

use aloe_svg::CreateFromSvg;

let svg_data: &XmlElement = ...; // Assume this is your SVG XML Element
let mut drawable = ...; // Instantiate your drawable object
let object = drawable.create_fromsvg(&svg_data);

Advanced Example

use aloe_svg::{ParseSvgPath, SvgState};

let svg_path_str = "M 10 10 H 90 V 90 H 10 L 10 10".to_string();
let mut path = Path::new();
let state = SvgState::new(null, null);
state.parse_svg_path(&mut path, &svg_path_str);

Modules and Traits

  • CreateFromSvg: Functional interface to create drawable objects from SVG elements.
  • CreateFromSvgFile: Create drawable constructs directly from SVG files.
  • ParseSvgPath: Convert SVG path strings into drawable paths using highly optimized parsing algorithms.

Contributing

Contributions are welcome! Check the GitHub repository for current issues and contributing guidelines.

License

Licensed under the GPL-3.0. See LICENSE for more details.


This README.md file was generated by an AI model and may not be 100% accurate. However, it should be pretty good.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~25–38MB
~596K SLoC