浏览代码

fix downscaling of avatar images in chat list, group view etc. (#226)

cyberta 5 年之前
父节点
当前提交
e8f71c3d93
共有 1 个文件被更改,包括 5 次插入3 次删除
  1. 5 3
      deltachat-ios/View/ContactCell.swift

+ 5 - 3
deltachat-ios/View/ContactCell.swift

@@ -165,9 +165,11 @@ class ContactCell: UITableViewCell {
     }
 
     func setImage(_ img: UIImage) {
-        let attachment = NSTextAttachment()
-        attachment.image = img
-        initialsLabel.attributedText = NSAttributedString(attachment: attachment)
+        if let resizedImg = img.resizeImage(targetSize: CGSize(width: initialsLabelSize, height: initialsLabelSize)) {
+            let attachment = NSTextAttachment()
+            attachment.image = resizedImg
+            initialsLabel.attributedText = NSAttributedString(attachment: attachment)
+        }
     }
 
     func setBackupImage(name: String, color: UIColor) {