Make lowest line of Splash image frames transparent to work around scaling issues
The Splash image is scaled. Sometimes, the lowest line is repeated on the top, which caused some weird lines to appear above big splashes (e.g. piano).
This has been done fully automated with a script. Only the alpha channel was changed. The color information is preserved.
#include "preview_image_provider.h"
PreviewImageProvider::PreviewImageProvider()
: QQuickImageProvider(QQuickImageProvider::Pixmap) {}
QPixmap PreviewImageProvider::requestPixmap(const QString &id, QSize *size,
const QSize &requestedSize) {
Q_UNUSED(id);
Q_UNUSED(requestedSize);
if (size) *size = m_px.size();
return m_px;
}
void PreviewImageProvider::setImage(const QImage &preview) {
m_px = QPixmap::fromImage(preview, Qt::ColorOnly);
// QPixmap pxres(px.size());
// QPainter p(&pxres);
// p.fillRect(pxres.rect(), linearGrad);
// p.drawPixmap(0, 0, px);
}