博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【代码笔记】iOS-图片旋转
阅读量:5312 次
发布时间:2019-06-14

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

代码:

RootViewController.h

#import 
@interface RootViewController : UIViewController@end

 

RootViewController.m

- (void)viewDidLoad{    [super viewDidLoad];    // Do any additional setup after loading the view.            UIImage * image = [UIImage imageNamed:@"1.jpg"];    NSData * tempData;    if (UIImagePNGRepresentation(image)) {        tempData = UIImagePNGRepresentation(image);        NSLog(@"%@",tempData);    }    else{        tempData = UIImageJPEGRepresentation(image, 1);    }    CIImage * iImg = [CIImage imageWithData:tempData];    UIImage * tImg = [UIImage imageWithCIImage:iImg scale:1 orientation:UIImageOrientationRight];    NSLog(@"%@",UIImagePNGRepresentation(tImg));    UIImageView * imageView = [[UIImageView alloc]initWithFrame:CGRectMake(10, 200, 200, 80)];    imageView.image = tImg;    [self.view addSubview:imageView];    }

 

转载于:https://www.cnblogs.com/yang-guang-girl/p/5582821.html

你可能感兴趣的文章
关于外存索引
查看>>
PHP抽象类与接口的区别
查看>>
Git_初步了解
查看>>
详解在中国最成功的连锁餐饮企业——百胜集团
查看>>
Spring Boot Autowirted注入找不到Bean对象解决方法
查看>>
Linux AUFS 文件系统
查看>>
个人冲刺
查看>>
Python__接口与归一化设计
查看>>
使用Bezier Paths[转]
查看>>
jQuery easyui 扩展form插件的三个方法
查看>>
typedef的用法总结
查看>>
SQL Server Cast and Convert
查看>>
[转载]由浅入深理解索引的实现(2)
查看>>
gnome 3.8更新 让人失望
查看>>
模块相关
查看>>
java动态生成验证码图片
查看>>
WIN CE和电脑之间的文件拷贝(1) Form1.Designer.cs文件
查看>>
无限循环
查看>>
集成备注
查看>>
关于一个隐藏和显示物品列表的demo
查看>>