summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRahul Dadhich <r.dadhich@samsung.com>2020-07-03 14:32:26 +0530
committerRahul Dadhich <r.dadhich@samsung.com>2020-09-21 09:34:56 +0000
commit750cecb7ee03ad4c82fc5b665eb44a5bfc28c704 (patch)
tree1058abb98c2c6959a2366501548e872246a93d07
parent757325fd31bacca7ba02fc67c649c24d499eab11 (diff)
downloadqemu-750cecb7ee03ad4c82fc5b665eb44a5bfc28c704.tar.gz
qemu-750cecb7ee03ad4c82fc5b665eb44a5bfc28c704.tar.bz2
qemu-750cecb7ee03ad4c82fc5b665eb44a5bfc28c704.zip
[SPTSDKUX-5571] changing screenshot save logic
Change-Id: I9dc024ecccf6f4087f49d9d478dbfbb30fd16c94 Signed-off-by: Rahul Dadhich <r.dadhich@samsung.com> (cherry picked from commit 6c9bf40f3f2447a07c05c7c91eb53a034bde24b4) (cherry picked from commit 7ea17725930d61b8a868d51324be47bc994f8141)
-rw-r--r--tizen/src/ui/menu/screenshotdialog.cpp13
1 files changed, 10 insertions, 3 deletions
diff --git a/tizen/src/ui/menu/screenshotdialog.cpp b/tizen/src/ui/menu/screenshotdialog.cpp
index c57a7bb077..be5e7b7e3e 100644
--- a/tizen/src/ui/menu/screenshotdialog.cpp
+++ b/tizen/src/ui/menu/screenshotdialog.cpp
@@ -177,9 +177,12 @@ bool ScreenShotDialog::slotSave()
return false;
}
- QPixmap pixmap(shotData);
+ QImage image(scene->sceneRect().size().toSize(), QImage::Format_ARGB32); // Create the image with the exact size of the shrunk scene
+ image.fill(Qt::transparent); // Start all pixels transparent
+ QPainter painter(&image);
+ scene->render(&painter);
qDebug() << filename;
- pixmap.save(filename);
+ image.save(filename);
return true;
}
@@ -190,8 +193,12 @@ void ScreenShotDialog::slotCopy()
QClipboard *clipboard = QApplication::clipboard();
if (clipboard != NULL) {
+ QImage image(scene->sceneRect().size().toSize(), QImage::Format_ARGB32); // Create the image with the exact size of the shrunk scene
+ image.fill(Qt::transparent); // Start all pixels transparent
+ QPainter painter(&image);
+ scene->render(&painter);
clipboard->clear();
- clipboard->setPixmap(shotData);
+ clipboard->setImage(image);
} else {
qWarning("cannot copy to clipboard");
}