Hi,

        I was trying something with the Jambi svg packages and ran into
an issue.
        I'm trying to read a SVG image, manipulate it and write back a
new SVG image.
        I can do it with the below code (thanks to QT mailing lists)

                QSvgGenerator svgGenerator = new QSvgGenerator();
                svgGenerator.setFileName("c:/myImage.svg");
                QPainter svgPainter = new QPainter(svgGenerator);
                graphicsScene.render(svgPainter);
                svgPainter.end();

        But the problem is that the resultant image has a bitmap
embedded in it and so is not scalable.
        I also know that QT supports only the static features of SVG 1.2
Tiny, so no DOM manipulation etc. 2 questions, 
        1. Is DOM manipulation on QT's roadmap?
        2. Is there any way that I can get a scalable SVG image
generated by using only QT Jambi.

        Thanks
        Chetan


_______________________________________________
Qt-jambi-interest mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-jambi-interest

Reply via email to