Q3Picture Class Reference |
Q3Picture () | |
Q3Picture ( const QPicture & other ) | |
bool | load ( QIODevice * device, const char * format = 0 ) |
bool | load ( const QString & fileName, const char * format = 0 ) |
bool | save ( QIODevice * device, const char * format = 0 ) |
bool | save ( const QString & fileName, const char * format = 0 ) |
The Q3Picture class is a paint device that records and replays Q3Painter commands.
Q3Picture can also read and write SVG (Scalable Vector Graphics) files, a W3C XML format. Note that when using the load() and save() functions to read and write SVG files, the format must be specified.
See also QPicture.
Constructs a Q3Picture.
Constructs a copy of other.
Loads the picture in the specified format from the given device. Returns true if the file is loaded successfully; otherwise returns false.
Note that when using the load() function to read SVG files, the format must be specified. For example:
Q3Picture picture; picture.load("drawing.svg", SVG);
See also save().
This is an overloaded function.
Loads the picture in the specified format from a file with the given fileName. Returns true if the file is loaded successfully; otherwise returns false.
Saves the picture in the specified format to the given device. Returns true if the save is successful. Returns false if, for example, the picture is still being painted, i.e., QPainter::end() has not yet been called.
Note that when using the save() function to save SVG files, the format must be specified. For example:
Q3Picture picture; QPainter painter; painter.begin(&picture); // paint in picture ... painter.end(); // painting done picture.save("drawing.svg", SVG); // save picture
See also load().
This is an overloaded function.
Saves the picture in the specified format to the file with the given fileName.
See also load().
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 4.6 | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com