gitextract_vwl0jp28/ ├── .github/ │ ├── copyright.sh │ ├── pull_request_template.md │ └── workflows/ │ ├── main.yml │ └── tagged-release.yml ├── .gitignore ├── .typos.toml ├── AUTHORS ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── crates/ │ ├── c-api/ │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── ResvgQt.h │ │ ├── cbindgen.toml │ │ ├── examples/ │ │ │ └── cairo/ │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── example.c │ │ ├── lib.rs │ │ └── resvg.h │ ├── resvg/ │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── examples/ │ │ │ ├── custom_href_resolver.rs │ │ │ ├── draw_bboxes.rs │ │ │ └── minimal.rs │ │ ├── src/ │ │ │ ├── clip.rs │ │ │ ├── filter/ │ │ │ │ ├── box_blur.rs │ │ │ │ ├── color_matrix.rs │ │ │ │ ├── component_transfer.rs │ │ │ │ ├── composite.rs │ │ │ │ ├── convolve_matrix.rs │ │ │ │ ├── displacement_map.rs │ │ │ │ ├── iir_blur.rs │ │ │ │ ├── lighting.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── morphology.rs │ │ │ │ └── turbulence.rs │ │ │ ├── geom.rs │ │ │ ├── image.rs │ │ │ ├── lib.rs │ │ │ ├── main.rs │ │ │ ├── mask.rs │ │ │ ├── path.rs │ │ │ └── render.rs │ │ └── tests/ │ │ ├── README.md │ │ ├── fonts/ │ │ │ ├── Amiri-LICENSE-OFL.txt │ │ │ ├── CFF-and-SBIX-LICENSE-APACHE.txt │ │ │ ├── CFF-and-SBIX.otf │ │ │ ├── MPLUS1p-LICENSE-OFL.txt │ │ │ ├── Noto-LICENSE-OFL.txt │ │ │ ├── NotoColorEmojiCBDT-LICENSE_APACHE.txt │ │ │ ├── NotoZnamennyMusicalNotation-OFL.txt │ │ │ ├── README.md │ │ │ ├── RobotoFlex-LICENSE-OFL.txt │ │ │ ├── SedgwickAveDisplay-LICENSE-OFL.txt │ │ │ ├── SourceSansPro-LICENSE-OFL.md │ │ │ ├── TwitterColorEmoji-LICENSE-MIT.txt │ │ │ └── Yellowtail-LICENSE-Apache2.txt │ │ ├── gen-tests.py │ │ ├── integration/ │ │ │ ├── extra.rs │ │ │ ├── main.rs │ │ │ └── render.rs │ │ └── resources/ │ │ ├── green.css │ │ └── image.svgz │ └── usvg/ │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── codegen/ │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── attributes.txt │ │ ├── elements.txt │ │ └── main.rs │ ├── docs/ │ │ ├── post-processing.md │ │ └── spec.adoc │ ├── src/ │ │ ├── lib.rs │ │ ├── main.rs │ │ ├── parser/ │ │ │ ├── clippath.rs │ │ │ ├── converter.rs │ │ │ ├── filter.rs │ │ │ ├── image.rs │ │ │ ├── marker.rs │ │ │ ├── mask.rs │ │ │ ├── mod.rs │ │ │ ├── options.rs │ │ │ ├── paint_server.rs │ │ │ ├── shapes.rs │ │ │ ├── style.rs │ │ │ ├── svgtree/ │ │ │ │ ├── mod.rs │ │ │ │ ├── names.rs │ │ │ │ ├── parse.rs │ │ │ │ └── text.rs │ │ │ ├── switch.rs │ │ │ ├── text.rs │ │ │ ├── units.rs │ │ │ └── use_node.rs │ │ ├── text/ │ │ │ ├── colr.rs │ │ │ ├── flatten.rs │ │ │ ├── layout.rs │ │ │ └── mod.rs │ │ ├── tree/ │ │ │ ├── filter.rs │ │ │ ├── geom.rs │ │ │ ├── mod.rs │ │ │ └── text.rs │ │ └── writer.rs │ └── tests/ │ ├── parser.rs │ └── write.rs ├── docs/ │ ├── svg2-changelog.md │ └── unsupported.md ├── tools/ │ ├── explorer-thumbnailer/ │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── LICENSE-SUMMARY.txt │ │ ├── install/ │ │ │ └── installer.iss │ │ └── src/ │ │ ├── error.rs │ │ ├── interfaces/ │ │ │ ├── iinitialize_with_stream.rs │ │ │ ├── ithumbnail_provider.rs │ │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── thumbnail_provider.rs │ │ └── utils.rs │ └── viewsvg/ │ ├── .gitignore │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── svgview.cpp │ ├── svgview.h │ └── viewsvg.pro └── version-bump.md