美文网首页
修改富文本中的图片大小

修改富文本中的图片大小

作者: zhangwenqiang | 来源:发表于2019-02-15 14:54 被阅读16次

      func resizeImgWithWidth(_fWidth:CGFloat){

            self.enumerateAttribute(NSAttachmentAttributeName, in: NSMakeRange(0, self.length), options: []) { (pAny, pRange, stop) in

                if(pAny !=nil){

                    letattachment = pAnyas!NSTextAttachment

                    letbounds0 = attachment.bounds

                    ifbounds0.width>fWidth{

                        letfNewHeight = bounds0.height*fWidth/bounds0.width

                        attachment.bounds=CGRect.init(origin: bounds0.origin, size:CGSize.init(width: fWidth, height: fNewHeight))

                    }

                }

            }

        }

    相关文章

      网友评论

          本文标题:修改富文本中的图片大小

          本文链接:https://www.haomeiwen.com/subject/hbapeqtx.html