I am working on a .NET project. I need to calculate the length and area of โโshapes in an SVG file.
There are two difficulties:
a) Bezier curves - it seems that the formula is not trivial
and
b) transforms - before performing the calculation, I must apply all the transformations
Can anyone recommend a library that performs geometric calculations in SVG files? Can anyone recommend code that applies transforms to SVG files and returns the source values โโfor each point in each form?
source
share