QPixmap pic("../image.jpg");

setAutoFillBackground(true);
QPalette palette;
QPixmap scaled=pic.scaled ( 800, 480, Qt::IgnoreAspectRatio, Qt::FastTransformation );

palette.setBrush(QPalette::Window, QBrush(scaled));

//this->setPalette(palette);
QWidget *w= new QWidget(this);
w->setGeometry(0,0,800,480);
w->show();
w->setPalette(palette); 

But the widget does not show any image.

link|improve this question
Not entirely sure, but what happens if you use QPalette::Background instead? – Bart Jan 10 at 16:47
Does it work when you don't scale the image? – Dusty Campbell Jan 10 at 17:21
it work with main window – Ansar Jan 11 at 6:57
feedback

1 Answer

Are you just trying to show the scaled image in a widget? I don't think setting the image in the brush and then setting the brush in the palette is the correct approach.

You can just use a QLabel to show an image in a widget. Like this:

QPixmap pic("../image.png");
QPixmap scaled=pic.scaled ( 800, 480, Qt::IgnoreAspectRatio, Qt::FastTransformation );

QLabel *label = new QLabel(this);
label->setPixmap(scaled);
link|improve this answer
but i want show some Qpushbuttons to widget when i used label button not working (becaose label are overlap the buttons) so i am try to show image as backgroung through widget – Ansar Jan 11 at 6:57
if you just want to change the background check this question: stackoverflow.com/q/6406940/2174 – Dusty Campbell Jan 11 at 20:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.