美文网首页
UIImage 拉伸

UIImage 拉伸

作者: iChuck | 来源:发表于2017-12-18 09:52 被阅读29次

// 加载原图

UIImage *image = [UIImage imageNamed:@"chat_send_nor"];

// 拉伸处理(说明需要保护的区域)

image = [image resizableImageWithCapInsets:UIEdgeInsetsMake(30, 30, 30, 30) resizingMode:UIImageResizingModeStretch];

// left

// top

// width

// height

// right = width - left - 1;

// bottom = height - top - 1;

// 根据以上公式计算,需要你给出左边保护多少,和上面保护多少

image = [image stretchableImageWithLeftCapWidth:image.size.width * 0.5 topCapHeight:image.size.height * 0.5];

相关文章

网友评论

      本文标题:UIImage 拉伸

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