




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、iPhone UIImage扩展方法,支持放大和旋转#import <Foundation/Foundation.h>interface UIImage (CS_Extensions)- (UIImage *)imageAtRect:(CGRect)rect;- (UIImage *)imageByScalingProportionallyToMinimumSize:(CGSize)targetSize;- (UIImage *)imageByScalingProportionallyToSize:(CGSize)targetSize;- (UIImage *)imageBySca
2、lingToSize:(CGSize)targetSize;- (UIImage *)imageRotatedByRadians:(CGFloat)radians;- (UIImage *)imageRotatedByDegrees:(CGFloat)degrees;end; / UIImage-Extensions.m/ Created by Hardy Macia on 7/1/09./ Copyright 2009 Catamount Software. All rights reserved./#import "UIImage-Extensions.h"CGFloa
3、t DegreesToRadians(CGFloat degrees) return degrees * M_PI / 180;CGFloat RadiansToDegrees(CGFloat radians) return radians * 180/M_PI;implementation UIImage (CS_Extensions)-(UIImage *)imageAtRect:(CGRect)rectCGImageRef imageRef = CGImageCreateWithImageInRect(self CGImage, rect);UIImage* subImage = UII
4、mage imageWithCGImage: imageRef;CGImageRelease(imageRef);return subImage;- (UIImage *)imageByScalingProportionallyToMinimumSize:(CGSize)targetSize UIImage *sourceImage = self;UIImage *newImage = nil;CGSize imageSize = sourceImage.size;CGFloat width = imageSize.width;CGFloat height = imageSize.height
5、;CGFloat targetWidth = targetSize.width;CGFloat targetHeight = targetSize.height;CGFloat scaleFactor = 0.0;CGFloat scaledWidth = targetWidth;CGFloat scaledHeight = targetHeight;CGPoint thumbnailPoint = CGPointMake(0.0,0.0);if (CGSizeEqualToSize(imageSize, targetSize) = NO) CGFloat widthFactor = targ
6、etWidth / width;CGFloat heightFactor = targetHeight / height;if (widthFactor > heightFactor)scaleFactor = widthFactor;elsescaleFactor = heightFactor;scaledWidth = width * scaleFactor;scaledHeight = height * scaleFactor;/ center the imageif (widthFactor > heightFactor) thumbnailPoint.y = (targe
7、tHeight - scaledHeight) * 0.5; else if (widthFactor < heightFactor) thumbnailPoint.x = (targetWidth - scaledWidth) * 0.5;/ this is actually the interesting part:UIGraphicsBeginImageContext(targetSize);CGRect thumbnailRect = CGRectZero;thumbnailRect.origin = thumbnailPoint;thumbnailRect.size.width
8、 = scaledWidth;thumbnailRect.size.height = scaledHeight;sourceImage drawInRect:thumbnailRect;newImage = UIGraphicsGetImageFromCurrentImageContext();UIGraphicsEndImageContext();if(newImage = nil) NSLog("could not scale image");return newImage ;- (UIImage *)imageByScalingProportionallyToSize
9、:(CGSize)targetSize UIImage *sourceImage = self;UIImage *newImage = nil;CGSize imageSize = sourceImage.size;CGFloat width = imageSize.width;CGFloat height = imageSize.height;CGFloat targetWidth = targetSize.width;CGFloat targetHeight = targetSize.height;CGFloat scaleFactor = 0.0;CGFloat scaledWidth
10、= targetWidth;CGFloat scaledHeight = targetHeight;CGPoint thumbnailPoint = CGPointMake(0.0,0.0);if (CGSizeEqualToSize(imageSize, targetSize) = NO) CGFloat widthFactor = targetWidth / width;CGFloat heightFactor = targetHeight / height;if (widthFactor < heightFactor)scaleFactor = widthFactor;elsesc
11、aleFactor = heightFactor;scaledWidth = width * scaleFactor;scaledHeight = height * scaleFactor;/ center the imageif (widthFactor < heightFactor) thumbnailPoint.y = (targetHeight - scaledHeight) * 0.5; else if (widthFactor > heightFactor) thumbnailPoint.x = (targetWidth - scaledWidth) * 0.5;/ t
12、his is actually the interesting part:UIGraphicsBeginImageContext(targetSize);CGRect thumbnailRect = CGRectZero;thumbnailRect.origin = thumbnailPoint;thumbnailRect.size.width = scaledWidth;thumbnailRect.size.height = scaledHeight;sourceImage drawInRect:thumbnailRect;newImage = UIGraphicsGetImageFromC
13、urrentImageContext();UIGraphicsEndImageContext();if(newImage = nil) NSLog("could not scale image");return newImage ;- (UIImage *)imageByScalingToSize:(CGSize)targetSize UIImage *sourceImage = self;UIImage *newImage = nil;/ CGSize imageSize = sourceImage.size;/ CGFloat width = imageSize.wid
14、th;/ CGFloat height = imageSize.height;CGFloat targetWidth = targetSize.width;CGFloat targetHeight = targetSize.height;/ CGFloat scaleFactor = 0.0;CGFloat scaledWidth = targetWidth;CGFloat scaledHeight = targetHeight;CGPoint thumbnailPoint = CGPointMake(0.0,0.0);/ this is actually the interesting pa
15、rt:UIGraphicsBeginImageContext(targetSize);CGRect thumbnailRect = CGRectZero;thumbnailRect.origin = thumbnailPoint;thumbnailRect.size.width = scaledWidth;thumbnailRect.size.height = scaledHeight;sourceImage drawInRect:thumbnailRect;newImage = UIGraphicsGetImageFromCurrentImageContext();UIGraphicsEnd
16、ImageContext();if(newImage = nil) NSLog("could not scale image");return newImage ;- (UIImage *)imageRotatedByRadians:(CGFloat)radiansreturn self imageRotatedByDegrees:RadiansToDegrees(radians);- (UIImage *)imageRotatedByDegrees:(CGFloat)degrees / calculate the size of the rotated view'
17、s containing box for our drawing spaceUIView *rotatedViewBox = UIView alloc initWithFrame:CGRectMake(0,0,self.size.width, self.size.height);CGAffineTransform t = CGAffineTransformMakeRotation(DegreesToRadians(degrees);rotatedViewBox.transform = t;CGSize rotatedSize = rotatedViewBox.frame.size;rotate
18、dViewBox release;/ Create the bitmap contextUIGraphicsBeginImageContext(rotatedSize);CGContextRef bitmap = UIGraphicsGetCurrentContext();/ Move the origin to the middle of the image so we will rotate and scale around the center.CGContextTranslateCTM(bitmap, rotatedSize.width/2, rotatedSize.height/2);/ / Rotate the image contextCGContextRotateCTM(bitmap, DegreesToRadians(degrees);/ Now, draw the rotated/scaled image into the
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 高校实验室安全基础
- 护肤品新品课件
- 2024年CFA考试新变化试题及答案
- 山东省诸城第一中学春考部2024-2025学年高三上学期10月月考数学试题(原卷版)
- 英语 第四册(五年制高职)5课件 Unit5 Quality Assurance
- 武威一中2024-2025学年下学期高一年级开学检测地理试卷
- 太阳花绘画课件
- 江西省抚州市2024-2025学年高一上学期期末地理试题
- 2024年特许金融分析师考试重难点及答案
- 反复练习的重要性:CFA试题及答案
- 高中数学思想方法导引
- 医用制氧机行业可行性研究报告
- 明亚保险经纪人考试题库答案
- 初中语文作业设计研究
- 水工金属压力钢管焊接工艺规程
- 古代美洲文明:2阿兹特克
- 生物多样性生物多样性的价值
- 2022年《旅游经济学》题库及答案(共8套)
- 2015-2022年北京电子科技职业学院高职单招语文/数学/英语笔试参考题库含答案解析
- 高中音乐(必修)《音乐鉴赏》 (人音版)《家国情怀的民族乐派》格林卡与穆索尔斯基《荒山之夜》
- 《有效小组合作的22个案例》读书笔记思维导图PPT模板下载
评论
0/150
提交评论