svgtypes

Crates.iosvgtypes
lib.rssvgtypes
version0.15.1
sourcesrc
created_at2018-04-21 14:56:12.605069
updated_at2024-05-07 17:07:54.288162
descriptionSVG types parser.
homepage
repositoryhttps://github.com/RazrFalcon/svgtypes
max_upload_size
id61711
size207,275
Yevhenii Reizner (RazrFalcon)

documentation

https://docs.rs/svgtypes/

README

svgtypes

Build Status Crates.io Documentation Rust 1.65+

svgtypes is a collection of parsers for SVG types.

Supported SVG types

Features

  • Complete support of paths, so data like M10-20A5.5.3-4 110-.1 will be parsed correctly.
  • Implicit path commands will be automatically converted into explicit one.
  • Some SVG2 data types support.
  • Pretty fast.

Limitations

  • Accepts only normalized values, e.g. an input text should not contain   or &data;.
  • All keywords must be lowercase. Case-insensitive parsing is supported only for colors (requires allocation for named colors).
  • The <color> followed by the <icccolor> is not supported. As the <icccolor> itself.
  • System colors, like fill="AppWorkspace", are not supported. They were deprecated anyway.

Safety

  • The library should not panic. Any panic considered as a critical bug and should be reported.
  • The library forbids unsafe code.

Alternatives

None.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 115

cargo fmt