round width and height when cropping avatar

This commit is contained in:
Robin Appelman 2015-03-20 04:08:24 +01:00
parent 2a8c3798a8
commit bd1d7107bb

View file

@ -244,7 +244,7 @@ class AvatarController extends Controller {
}
$image = new \OC_Image($tmpAvatar);
$image->crop($crop['x'], $crop['y'], $crop['w'], $crop['h']);
$image->crop($crop['x'], $crop['y'], round($crop['w']), round($crop['h']));
try {
$avatar = $this->avatarManager->getAvatar($userId);
$avatar->set($image);