Hi all,

I want to load a file with vector graphics and do some simple modifications to each curve in it.
So I basically need to access some coordinates within each curve (i.e. control points for Bezier curves, or just even vertices of polylines). I thought of using SVG format, loading it with QtSvg. Now the question is, after I load SVG (apparently, with QGraphicsSvgItem?), how can I look into it, i.e. access separate elements and their coordinates?

Thanks!