python-svgelements 1.6.8-1 source package in Ubuntu

Changelog

python-svgelements (1.6.8-1) unstable; urgency=medium

  * New upstream version 1.6.8

 -- Agathe Porte <email address hidden>  Sat, 05 Feb 2022 08:59:59 +0000

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-svgelements_1.6.8-1.dsc 2.2 KiB c60f239f6d75e91c3aeaf230337fb3f51aae9c093f0adf709195ce63e505c0ee
python-svgelements_1.6.8.orig.tar.gz 114.1 KiB 7302cb095ce91fdca098620cd39b3d79a04feb12881cb848114fbfeb13ab0678
python-svgelements_1.6.8-1.debian.tar.xz 3.1 KiB ac14ced6805aaf36d2146bd8b48228a0253ca1c79dc12bd77b6c3efde3db5971

Available diffs

No changes file available.

Binary packages built by this source

python3-svgelements: high fidelity SVG parsing and geometric rendering Python library

 The goal is to successfully and correctly process SVG for use with any scripts
 that may need or want to use SVG files as geometric data.
 .
 This is both facilitated by, and results in, very useful elements within the
 SVG spec: Path, Matrix, Angle, Length, Color, Point and other SVG and CSS
 Elements. The SVG spec defines a variety of elements which generally
 interoperate. In order to have a robust experience with SVGs one must be able
 to correctly deal with the parsing and interactions of these elements.
 .
 This project began as part of meerK40t which does SVG loading of files for
 laser cutting. It attempts to more fully map out the SVG specification,
 objects, and paths, while remaining easy to use and largely backwards
 compatible. These elements are quite useful in their own right. For example,
 the zooming and panning within meerK40t is done using the SVG matrix which
 more robust than the wxPython one. Internal console commands within meerK40t
 allows specifying robustly parsed angles of rotation, colors of objects, and
 naively uses the Path() and SVGImage objects. The ability to have these
 robustly manipulated with affine transformations provides considerable
 utility. There is significant utility in the interactions between these
 objects, however if one just want to robustly parse some SVG and convert the
 data to their own structures that is entirely reasonable.
 .
 Without robust SVG parsing one'll find repeated edge cases of some svg files
 that do not parse correctly. svgelements aims to avoid those pitfalls with
 robust adherence to the SVG spec.