aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalte Brandy <malte.brandy@maralorn.de>2016-10-24 21:03:44 +0200
committerMalte Brandy <malte.brandy@maralorn.de>2016-10-24 21:03:44 +0200
commit27b25141e02c32b1e53a25e82b579e6a3d8089c9 (patch)
tree46e472bd0db3069413691b0623b956842aade708
parent9a1270dbf8cf6c2dc9337c33a3c59b437676548c (diff)
downloadlibquotient-27b25141e02c32b1e53a25e82b579e6a3d8089c9.tar.gz
libquotient-27b25141e02c32b1e53a25e82b579e6a3d8089c9.zip
Crop avatar to ensure it has exactly the wanted size; Fixes memory leak #54
-rw-r--r--user.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/user.cpp b/user.cpp
index 7d4f0d1a..f6256a19 100644
--- a/user.cpp
+++ b/user.cpp
@@ -25,6 +25,7 @@
#include <QtCore/QTimer>
#include <QtCore/QDebug>
+#include <algorithm>
using namespace QMatrixClient;
@@ -102,10 +103,14 @@ QPixmap User::avatar(int width, int height)
if (p.size() == size)
return p;
}
- QPixmap newlyScaled =
- d->avatar.scaled(size, Qt::KeepAspectRatio, Qt::SmoothTransformation);
- d->scaledAvatars.push_back(newlyScaled);
- return newlyScaled;
+ QPixmap newlyScaled = d->avatar.scaled(size,
+ Qt::KeepAspectRatioByExpanding, Qt::SmoothTransformation);
+ QPixmap scaledAndCroped = newlyScaled.copy(
+ std::max((newlyScaled.width() - width)/2, 0),
+ std::max((newlyScaled.height() - height)/2, 0),
+ width, height);
+ d->scaledAvatars.push_back(scaledAndCroped);
+ return scaledAndCroped;
}
void User::processEvent(Event* event)