1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| #include <QtGui>
int main(int argc,char** argv)
{
QApplication app(argc,argv);
QImage imIn("image.png");
QImage imOut(imIn.size(),QImage::Format_RGB32);
//painter pour dessiner sur l'image
QPainter painter(&imOut);
//dessiner l'image de depart
painter.drawImage(0,0,imIn);
//Creation d'un gradient radiale blanc avec une variation d'opacite
QRadialGradient radialGrad(imOut.width()/2,imOut.height()/2,imOut.width()/4);
radialGrad.setColorAt(0, QColor ( 255,255, 255, 255 ));
radialGrad.setColorAt(1, QColor ( 255,255, 255, 0 ));
painter.setBrush(radialGrad);
//Dessine un rectangle sur toute l'image avec le gradient
painter.drawRect(imOut.rect());
//affichage des deux images
QWidget w;
{
QLayout * l=new QHBoxLayout;
QLabel *lab1 = new QLabel;
lab1->setPixmap ( QPixmap::fromImage(imIn) );
l->addWidget(lab1);
QLabel *lab2 = new QLabel;
lab2->setPixmap ( QPixmap::fromImage(imOut) );
l->addWidget(lab2);
w.setLayout(l);
}
w.show();
return app.exec();
} |