mirror of
https://github.com/tumic0/QtPBFImagePlugin.git
synced 2024-11-23 19:25:55 +01:00
Fixed build on Qt < 5.13
This commit is contained in:
parent
c8b7051eba
commit
3a0694323f
@ -4,10 +4,10 @@
|
|||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include "sprites.h"
|
#include "sprites.h"
|
||||||
|
|
||||||
static void decodeSDF(QImage &img, const QColor &color)
|
static QImage sdf2img(const QImage &sdf, const QColor &color)
|
||||||
{
|
{
|
||||||
|
QImage img(sdf.convertToFormat(QImage::Format_ARGB32_Premultiplied));
|
||||||
quint32 argb = color.rgba();
|
quint32 argb = color.rgba();
|
||||||
img.convertTo(QImage::Format_ARGB32_Premultiplied);
|
|
||||||
uchar *bits = img.bits();
|
uchar *bits = img.bits();
|
||||||
int bpl = img.bytesPerLine();
|
int bpl = img.bytesPerLine();
|
||||||
|
|
||||||
@ -17,6 +17,8 @@ static void decodeSDF(QImage &img, const QColor &color)
|
|||||||
*pixel = ((*pixel >> 24) < 192) ? 0 : argb;
|
*pixel = ((*pixel >> 24) < 192) ? 0 : argb;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return img;
|
||||||
}
|
}
|
||||||
|
|
||||||
Sprites::Sprite::Sprite(const QJsonObject &json)
|
Sprites::Sprite::Sprite(const QJsonObject &json)
|
||||||
@ -104,12 +106,9 @@ QImage Sprites::sprite(const Sprite &sprite, const QColor &color, qreal scale)
|
|||||||
QSize size(img.size().width() * scale, img.size().height() * scale);
|
QSize size(img.size().width() * scale, img.size().height() * scale);
|
||||||
QImage simg(img.scaled(size, Qt::IgnoreAspectRatio,
|
QImage simg(img.scaled(size, Qt::IgnoreAspectRatio,
|
||||||
Qt::SmoothTransformation));
|
Qt::SmoothTransformation));
|
||||||
decodeSDF(simg, color);
|
return sdf2img(simg, color);
|
||||||
return simg;
|
} else
|
||||||
} else {
|
return sdf2img(img, color);
|
||||||
decodeSDF(img, color);
|
|
||||||
return img;
|
|
||||||
}
|
|
||||||
} else
|
} else
|
||||||
return img;
|
return img;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user