博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios25---图片拉伸
阅读量:6094 次
发布时间:2019-06-20

本文共 2250 字,大约阅读时间需要 7 分钟。

控制器:

////  ViewController.m//  12-图片的拉伸问题////  Created by xiaomage on 15/12/30.//  Copyright © 2015年 小码哥. All rights reserved.//#import "ViewController.h"#import "UIImage+XMGExtention.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UIButton *button;@end@implementation ViewController- (void)viewDidLoad {    [super viewDidLoad];    // 1.1 创建UIImage对象    UIImage *image = [UIImage resizableImageWithLocalImageName:@"car"];//扩展了系统类的方法        //UIImage *image = [UIImage imageNamed:@"car"];        // 1.2 拿到image的尺寸    /*    CGFloat imageWidth = image.size.width;    CGFloat imageHeight = image.size.height;    */        // 1.3 返回一张受保护而且拉伸的图片 --->CapInsets:哪些地方要保护:上面保护图片高度一半,左边保护图片宽度一半,右边保护宽度一半减一,下面保护高度一半减一。只有中间1*1的区域拉伸。        // 方式一    /*    UIImage *resizableImage = [image resizableImageWithCapInsets:UIEdgeInsetsMake(imageHeight * 0.5, imageWidth * 0.5, imageHeight * 0.5 -1, imageWidth * 0.5 - 1)];    UIImageResizingModeTile, 平铺    UIImageResizingModeStretch, 拉伸(伸缩)        UIImage *resizableImage = [image resizableImageWithCapInsets:UIEdgeInsetsMake(imageHeight * 0.5, imageWidth * 0.5, imageHeight * 0.5 -1, imageWidth * 0.5 - 1) resizingMode:UIImageResizingModeTile];    */        // 方式二    /*    // 右边需要保护的区域 = 图片的width - leftCapWidth - 1    // bottom cap =  height - topCapHeight - 1    UIImage *resizableImage = [image stretchableImageWithLeftCapWidth:imageWidth * 0.5 topCapHeight:imageHeight * 0.5];    */        //2.把图片设置到按钮上    [self.button setBackgroundImage:image forState:UIControlStateNormal];     }@end

UIImage的扩展,分类:

////  UIImage+XMGExtention.h//  12-图片的拉伸问题//#import 
@interface UIImage (XMGExtention) //分类/** * 返回一张受保护的图片(被拉伸的) */+ (instancetype)resizableImageWithLocalImageName: (NSString *)localImageName;@end
////  UIImage+XMGExtention.m//#import "UIImage+XMGExtention.h"@implementation UIImage (XMGExtention)+ (instancetype)resizableImageWithLocalImageName:(NSString *)localImageName{   // 创建图片对象    UIImage *image = [UIImage imageNamed:localImageName];        // 获取图片的尺寸    CGFloat imageWidth = image.size.width;    CGFloat imageHeiht = image.size.height;        // 返回一张拉伸且受保护的图片    return [image stretchableImageWithLeftCapWidth:imageWidth * 0.5 topCapHeight:imageHeiht * 0.5 ];}@end

 

转载地址:http://fvgwa.baihongyu.com/

你可能感兴趣的文章
Data Wrangling文摘:Non-tidy-data
查看>>
加解密算法、消息摘要、消息认证技术、数字签名与公钥证书
查看>>
while()
查看>>
常用限制input的方法
查看>>
Ext Js简单事件处理和对象作用域
查看>>
IIS7下使用urlrewriter.dll配置
查看>>
12.通过微信小程序端访问企查查(采集工商信息)
查看>>
WinXp 开机登录密码
查看>>
POJ 1001 Exponentiation
查看>>
HDU 4377 Sub Sequence[串构造]
查看>>
云时代架构阅读笔记之四
查看>>
WEB请求处理一:浏览器请求发起处理
查看>>
Lua学习笔记(8): 元表
查看>>
PHP经典算法题
查看>>
LeetCode 404 Sum of Left Leaves
查看>>
醋泡大蒜有什么功效
查看>>
hdu 5115(2014北京—dp)
查看>>
数据结构中常见的树(BST二叉搜索树、AVL平衡二叉树、RBT红黑树、B-树、B+树、B*树)...
查看>>
PHP读取日志里数据方法理解
查看>>
第五十七篇、AVAssetReader和AVAssetWrite 对视频进行编码
查看>>