From 6c9bf40f3f2447a07c05c7c91eb53a034bde24b4 Mon Sep 17 00:00:00 2001 From: Rahul Dadhich Date: Fri, 3 Jul 2020 14:32:26 +0530 Subject: [PATCH] [SPTSDKUX-5571] changing screenshot save logic Change-Id: I9dc024ecccf6f4087f49d9d478dbfbb30fd16c94 Signed-off-by: Rahul Dadhich --- tizen/src/ui/menu/screenshotdialog.cpp | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/tizen/src/ui/menu/screenshotdialog.cpp b/tizen/src/ui/menu/screenshotdialog.cpp index c57a7bb..be5e7b7 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"); } -- 2.7.4