![]() |
Home · All Classes · Main Classes · Annotated · Grouped Classes · Functions | ![]() |
The following class members are part of the Qt 3 support layer. They are provided to help you port old code to Qt 4. We advise against using them in new code.
Use QImage::fromData(data) instead.
For example, if you have code like
QByteArray data; ... QImage image(data);
you can rewrite it as
QByteArray data; ... QImage image = QImage::fromData(data);
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
Use the invertPixels() function that takes a QImage::InvertMode parameter instead.
Use scale(width, height, mode, Qt::SmoothTransformation) instead.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
Use scale(size, mode, Qt::SmoothTransformation) instead.
Use transform(matrix) instead.
Copyright © 2005 Trolltech | Trademarks | Qt 4.0.0-b2 |