The QSvgGenerator class provides a paint device that is used to create SVG drawings. 更多...
继承 QPaintDevice .
The QSvgGenerator class provides a paint device that is used to create SVG drawings.
This paint device represents a Scalable Vector Graphics (SVG) drawing. Like QPrinter , it is designed as a write-only device that generates output in a specific format.
To write an SVG file, you first need to configure the output by setting the fileName or outputDevice properties. It is usually necessary to specify the size of the drawing by setting the size property, and in some cases where the drawing will be included in another, the viewBox property also needs to be set.
QSvgGenerator generator;
generator.setFileName(path);
generator.setSize(QSize(200, 200));
generator.setViewBox(QRect(0, 0, 200, 200));
generator.setTitle(tr("SVG Generator Example Drawing"));
generator.setDescription(tr("An SVG drawing created by the SVG Generator "
"Example provided with Qt."));
Other meta-data can be specified by setting the title , description and resolution 特性。
As with other QPaintDevice 子类, QPainter object is used to paint onto an instance of this class:
QPainter painter;
painter.begin(&generator);
...
painter.end();
Painting is performed in the same way as for any other paint device. However, it is necessary to use the QPainter.begin () 和 end() to explicitly begin and end painting on the device.
SVG Generator 范例 shows how the same painting commands can be used for painting a widget and writing an SVG file.
构造新的生成器。
重实现自 QPaintDevice.metric ().
重实现自 QPaintDevice.paintEngine ().
Returns the paint engine used to render graphics to be converted to SVG format information.
返回 viewBoxF ().toRect().
该函数在 Qt 4.5 引入。
另请参阅 setViewBox () 和 viewBoxF ().