Is it possible to render svg from svg paths?
Like in JavaScript, we are having Path2D to render svg paths to canvas. Similarly, Is there any way to render a svg path to the QGraphicsScene?
Is it possible to render svg from svg paths?
Like in JavaScript, we are having Path2D to render svg paths to canvas. Similarly, Is there any way to render a svg path to the QGraphicsScene?
You can use QGraphicsSvgItem to put an SVG onto a QGraphicsScene. It
The last option is useful if you have no file but rather raw SVG-data in a buffer, i.e. received via a network connection or created dynamically from user input.