Swift 图片拉伸,屡试不爽!!!

Posted PLA-Artillery

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift 图片拉伸,屡试不爽!!!相关的知识,希望对你有一定的参考价值。

Swift 图片拉伸,屡试不爽!!!

图片拉伸应用的地方很多,就不举例子了!以下是个人的见解,如有不对的地方,请多多指教!

有两种方法可以使用:

一、使用stretchableImageWithLeftCapWidth的方法,设置拉伸的点leftCapWidth 和 topCapHeight

如图:

 代码:

    // 设置image图片拉伸

        var image = UIImage(named: "textTag")

        let leftCapWidth: Int = Int(image.size.width / 2)   // 取图片Width的中心点

        let topCapHeight: Int = Int(image.size.height / 2)  // 取图片Height的中心点

        image = image.stretchableImageWithLeftCapWidth(leftCapWidth, topCapHeight: topCapHeight)  // 拉伸

        imageView.image = image

 

二、使用resizableImageWithCapInsets的方法,设置 不拉伸 的边距UIEdgeInsetsMake

如图:

 

代码:

  let imageView = UIImageView(frame: CGRectMake(40, 40, 300, 30))  

  let image = UIImage(named: "testTag")?.resizableImageWithCapInsets(UIEdgeInsetsMake(0, 10, 0, 40), resizingMode: UIImageResizingMode.Stretch)  

  imageView.image = image  

  view.addSubview(imageView)  

以上是关于Swift 图片拉伸,屡试不爽!!!的主要内容,如果未能解决你的问题,请参考以下文章

ios图片拉伸技巧

怎么让网页的背景图片随着页面的拉伸而拉伸

如何将图像拉伸成自定义形状(swift3)

聊天气泡图片对称拉伸(箭头保持在中间)

iOS图片拉伸

html中如何将背景图片横向拉伸