Details
-
Bug
-
Resolution: Out of scope
-
P4: Low
-
None
-
4.6.3, 6.8.0 FF
-
None
-
Ubuntu 10.04
Description
The attached SVG file contains text along a path. (The SVG was copied from W3C site.) If opened in Google Chrome, it appears fine. However, when rendered in QGraphicsSvgItem, the text is not rendered, only the raw path.
#include <QtGui> #include <QtSvg/QGraphicsSvgItem> int main(int argc, char *argv[]) { QApplication app(argc, argv); QGraphicsScene *scene = new QGraphicsScene; scene->addText("Do you see the text following the path, or just the path?"); QGraphicsSvgItem *svg = new QGraphicsSvgItem(":/image/curved_text.svg"); scene->addItem(svg); QGraphicsView view(scene); view.show(); return app.exec(); }
Attachments
Issue Links
- depends on
-
QTBUG-86839 Adding text to QPainterPath that follows the path.
- Reported
- relates to
-
QTBUG-121027 Add text-along-a-path feature to TextPath
- Reported