2023-02-16 13:51:55 +08:00
|
|
|
|
// Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
|
|
|
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
2022-09-06 11:36:55 +08:00
|
|
|
|
//
|
|
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
2018-06-19 23:44:49 +08:00
|
|
|
|
|
|
|
|
|
#include "imageutil.h"
|
|
|
|
|
|
2019-11-05 21:04:07 +08:00
|
|
|
|
#include <QIcon>
|
2018-06-19 23:44:49 +08:00
|
|
|
|
#include <QPainter>
|
2021-11-05 21:29:32 +08:00
|
|
|
|
#include <QCursor>
|
|
|
|
|
#include <QDebug>
|
2022-05-27 09:27:33 +08:00
|
|
|
|
#include <QPainterPath>
|
|
|
|
|
#include <QRegion>
|
|
|
|
|
#include <QBitmap>
|
2022-08-18 10:42:52 +00:00
|
|
|
|
#include <QDBusInterface>
|
|
|
|
|
#include <QDBusReply>
|
|
|
|
|
#include <QFile>
|
2022-10-11 08:29:02 +00:00
|
|
|
|
#include <QDBusUnixFileDescriptor>
|
2021-11-05 21:29:32 +08:00
|
|
|
|
|
|
|
|
|
#include <X11/Xcursor/Xcursor.h>
|
2018-06-19 23:44:49 +08:00
|
|
|
|
|
2022-10-11 08:29:02 +00:00
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <iosfwd>
|
|
|
|
|
|
2019-11-05 21:04:07 +08:00
|
|
|
|
const QPixmap ImageUtil::loadSvg(const QString &iconName, const QString &localPath, const int size, const qreal ratio)
|
2018-06-19 23:44:49 +08:00
|
|
|
|
{
|
2019-11-05 21:04:07 +08:00
|
|
|
|
QIcon icon = QIcon::fromTheme(iconName);
|
2022-11-30 16:46:54 +08:00
|
|
|
|
int pixmapSize = QCoreApplication::testAttribute(Qt::AA_UseHighDpiPixmaps) ? size : int(size * ratio);
|
2019-11-05 21:04:07 +08:00
|
|
|
|
if (!icon.isNull()) {
|
2022-11-30 16:46:54 +08:00
|
|
|
|
QPixmap pixmap = icon.pixmap(pixmapSize);
|
2019-11-05 21:04:07 +08:00
|
|
|
|
pixmap.setDevicePixelRatio(ratio);
|
2023-01-13 09:41:11 +08:00
|
|
|
|
if (ratio == 1)
|
|
|
|
|
return pixmap;
|
|
|
|
|
return pixmap.scaled(size * ratio, size * ratio);
|
2019-11-05 21:04:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-30 16:46:54 +08:00
|
|
|
|
QPixmap pixmap(pixmapSize, pixmapSize);
|
2019-11-05 21:04:07 +08:00
|
|
|
|
QString localIcon = QString("%1%2%3").arg(localPath).arg(iconName).arg(iconName.contains(".svg") ? "" : ".svg");
|
|
|
|
|
QSvgRenderer renderer(localIcon);
|
2018-06-19 23:44:49 +08:00
|
|
|
|
pixmap.fill(Qt::transparent);
|
|
|
|
|
|
|
|
|
|
QPainter painter;
|
|
|
|
|
painter.begin(&pixmap);
|
|
|
|
|
renderer.render(&painter);
|
|
|
|
|
painter.end();
|
2019-11-05 21:04:07 +08:00
|
|
|
|
pixmap.setDevicePixelRatio(ratio);
|
2018-06-19 23:44:49 +08:00
|
|
|
|
|
2023-01-13 09:41:11 +08:00
|
|
|
|
if (ratio == 1)
|
|
|
|
|
return pixmap;
|
|
|
|
|
|
|
|
|
|
return pixmap.scaled(size * ratio, size * ratio);
|
2018-06-19 23:44:49 +08:00
|
|
|
|
}
|
2020-05-22 13:10:14 +08:00
|
|
|
|
|
|
|
|
|
const QPixmap ImageUtil::loadSvg(const QString &iconName, const QSize size, const qreal ratio)
|
|
|
|
|
{
|
|
|
|
|
QIcon icon = QIcon::fromTheme(iconName);
|
|
|
|
|
if (!icon.isNull()) {
|
2022-12-19 15:05:49 +08:00
|
|
|
|
QPixmap pixmap = icon.pixmap(QCoreApplication::testAttribute(Qt::AA_UseHighDpiPixmaps) ? size : QSize(size * ratio));
|
2020-05-22 13:10:14 +08:00
|
|
|
|
pixmap.setDevicePixelRatio(ratio);
|
2023-01-13 09:41:11 +08:00
|
|
|
|
if (ratio == 1)
|
|
|
|
|
return pixmap;
|
|
|
|
|
|
|
|
|
|
if (pixmap.size().width() > size.width() * ratio)
|
|
|
|
|
pixmap = pixmap.scaledToWidth(size.width() * ratio);
|
|
|
|
|
if (pixmap.size().height() > size.height() * ratio)
|
|
|
|
|
pixmap = pixmap.scaledToHeight(size.height() * ratio);
|
|
|
|
|
|
2020-05-22 13:10:14 +08:00
|
|
|
|
return pixmap;
|
|
|
|
|
}
|
2020-06-12 09:51:42 +08:00
|
|
|
|
return QPixmap();
|
2020-05-22 13:10:14 +08:00
|
|
|
|
}
|
2021-11-05 21:29:32 +08:00
|
|
|
|
|
|
|
|
|
QCursor* ImageUtil::loadQCursorFromX11Cursor(const char* theme, const char* cursorName, int cursorSize)
|
|
|
|
|
{
|
|
|
|
|
if (!theme || !cursorName || cursorSize <= 0)
|
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
|
|
XcursorImages *images = XcursorLibraryLoadImages(cursorName, theme, cursorSize);
|
|
|
|
|
if (!images || !(images->images[0])) {
|
|
|
|
|
qWarning() << "loadCursorFalied, theme =" << theme << ", cursorName=" << cursorName;
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
const int imgW = images->images[0]->width;
|
|
|
|
|
const int imgH = images->images[0]->height;
|
|
|
|
|
QImage img((const uchar*)images->images[0]->pixels, imgW, imgH, QImage::Format_ARGB32);
|
|
|
|
|
QPixmap pixmap = QPixmap::fromImage(img);
|
|
|
|
|
QCursor *cursor = new QCursor(pixmap, images->images[0]->xhot, images->images[0]->yhot);
|
2022-01-17 20:55:31 +08:00
|
|
|
|
XcursorImagesDestroy(images);
|
2021-11-05 21:29:32 +08:00
|
|
|
|
return cursor;
|
|
|
|
|
}
|
2022-08-18 10:42:52 +00:00
|
|
|
|
|
2022-10-11 08:29:02 +00:00
|
|
|
|
QPixmap ImageUtil::loadWindowThumb(const QString &winInfoId)
|
2022-08-18 10:42:52 +00:00
|
|
|
|
{
|
2023-03-16 11:36:10 +08:00
|
|
|
|
|
|
|
|
|
// pipe read write fd
|
|
|
|
|
int fd[2];
|
|
|
|
|
|
|
|
|
|
if (pipe(fd) < 0) {
|
|
|
|
|
qDebug() << "failed to create pipe";
|
2022-10-11 08:29:02 +00:00
|
|
|
|
return QPixmap();
|
|
|
|
|
}
|
2022-08-18 10:42:52 +00:00
|
|
|
|
|
2022-10-11 08:29:02 +00:00
|
|
|
|
QDBusInterface interface(QStringLiteral("org.kde.KWin"), QStringLiteral("/org/kde/KWin/ScreenShot2"), QStringLiteral("org.kde.KWin.ScreenShot2"));
|
|
|
|
|
// 第一个参数,winID或者UUID
|
2022-08-18 10:42:52 +00:00
|
|
|
|
QList<QVariant> args;
|
2022-10-11 08:29:02 +00:00
|
|
|
|
args << QVariant::fromValue(winInfoId);
|
|
|
|
|
// 第二个参数,需要截图的选项
|
|
|
|
|
QVariantMap option;
|
|
|
|
|
option["include-decoration"] = true;
|
|
|
|
|
option["include-cursor"] = false;
|
|
|
|
|
option["native-resolution"] = true;
|
|
|
|
|
args << QVariant::fromValue(option);
|
|
|
|
|
// 第三个参数,文件描述符
|
2023-03-16 11:36:10 +08:00
|
|
|
|
args << QVariant::fromValue(QDBusUnixFileDescriptor(fd[1]));
|
2022-10-11 08:29:02 +00:00
|
|
|
|
|
|
|
|
|
QDBusReply<QVariantMap> reply = interface.callWithArgumentList(QDBus::Block, QStringLiteral("CaptureWindow"), args);
|
|
|
|
|
if(!reply.isValid()) {
|
2023-03-16 11:36:10 +08:00
|
|
|
|
close(fd[1]);
|
|
|
|
|
close(fd[0]);
|
2022-08-18 10:42:52 +00:00
|
|
|
|
qDebug() << "get current workspace background error: "<< reply.error().message();
|
2022-10-11 08:29:02 +00:00
|
|
|
|
return QPixmap();
|
2022-08-18 10:42:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-16 11:36:10 +08:00
|
|
|
|
// close write
|
|
|
|
|
close(fd[1]);
|
|
|
|
|
|
2022-10-11 08:29:02 +00:00
|
|
|
|
QVariantMap imageInfo = reply.value();
|
|
|
|
|
int imageWidth = imageInfo.value("width").toUInt();
|
|
|
|
|
int imageHeight = imageInfo.value("height").toUInt();
|
|
|
|
|
int imageStride = imageInfo.value("stride").toUInt();
|
|
|
|
|
int imageFormat = imageInfo.value("format").toUInt();
|
2022-08-18 10:42:52 +00:00
|
|
|
|
|
2022-10-11 08:29:02 +00:00
|
|
|
|
QFile file;
|
2023-03-16 11:36:10 +08:00
|
|
|
|
if (!file.open(fd[0], QIODevice::ReadOnly)) {
|
2022-10-11 08:29:02 +00:00
|
|
|
|
file.close();
|
2023-03-16 11:36:10 +08:00
|
|
|
|
close(fd[0]);
|
2022-10-11 08:29:02 +00:00
|
|
|
|
return QPixmap();
|
2022-08-18 10:42:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-16 11:36:10 +08:00
|
|
|
|
QImage::Format qimageFormat = static_cast<QImage::Format>(imageFormat);
|
|
|
|
|
int bitsCountPerPixel = QImage::toPixelFormat(qimageFormat).bitsPerPixel();
|
|
|
|
|
|
|
|
|
|
QByteArray fileContent = file.read(imageHeight * imageWidth * bitsCountPerPixel / 8);
|
|
|
|
|
QImage image(reinterpret_cast<uchar *>(fileContent.data()), imageWidth, imageHeight, imageStride, qimageFormat);
|
2022-10-11 08:29:02 +00:00
|
|
|
|
QPixmap pixmap = QPixmap::fromImage(image);
|
|
|
|
|
|
2023-03-16 11:36:10 +08:00
|
|
|
|
// close read
|
|
|
|
|
close(fd[0]);
|
|
|
|
|
|
|
|
|
|
return pixmap;
|
2022-08-18 10:42:52 +00:00
|
|
|
|
}
|