Fix transparent reply previews.

The transparent reply previews (for stickers) were not filled by
transparent background before resizing, now there is a flag for that.
This commit is contained in:
John Preston 2017-06-06 12:16:56 +03:00
parent 6869cc7d04
commit 0e4b057220
3 changed files with 6 additions and 2 deletions

View File

@ -1811,7 +1811,7 @@ ImagePtr DocumentData::makeReplyPreview() {
if (h <= 0) h = 1;
auto thumbSize = (w > h) ? QSize(w * st::msgReplyBarSize.height() / h, st::msgReplyBarSize.height()) : QSize(st::msgReplyBarSize.height(), h * st::msgReplyBarSize.height() / w);
thumbSize *= cIntRetinaFactor();
auto options = Images::Option::Smooth | (isRoundVideo() ? Images::Option::Circled : Images::Option::None);
auto options = Images::Option::Smooth | (isRoundVideo() ? Images::Option::Circled : Images::Option::None) | Images::Option::TransparentBackground;
auto outerSize = st::msgReplyBarSize.height();
auto image = thumb->pixNoCache(thumbSize.width(), thumbSize.height(), options, outerSize, outerSize);
replyPreview = ImagePtr(image, "PNG");

View File

@ -312,8 +312,11 @@ QImage prepare(QImage img, int w, int h, Images::Options options, int outerw, in
outerh *= cIntRetinaFactor();
if (outerw != w || outerh != h) {
img.setDevicePixelRatio(cRetinaFactor());
QImage result(outerw, outerh, QImage::Format_ARGB32_Premultiplied);
auto result = QImage(outerw, outerh, QImage::Format_ARGB32_Premultiplied);
result.setDevicePixelRatio(cRetinaFactor());
if (options & Images::Option::TransparentBackground) {
result.fill(Qt::transparent);
}
{
QPainter p(&result);
if (w < outerw || h < outerh) {

View File

@ -197,6 +197,7 @@ enum class Option {
RoundedBottomLeft = 0x080,
RoundedBottomRight = 0x100,
Colored = 0x200,
TransparentBackground = 0x400,
};
Q_DECLARE_FLAGS(Options, Option);
Q_DECLARE_OPERATORS_FOR_FLAGS(Options);