




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025标准版装修合同范本
- 2025年东湖镇地质灾害风险评估与城乡房屋建筑安全普查合同
- 河南人教版中招数学试卷
- 广州六中三模数学试卷
- 吉安八上数学试卷
- 广州深圳期末数学试卷
- 2025年合同无效认定的原则与规定
- 2025南京市劳动合同模板
- 土壤碳库水分调控-洞察及研究
- 2025无合同随意解雇员工补偿标准
- 康明斯产品合格证
- 矿山废水处理行业调研及投资前景分析报告
- 【五升六暑期阅读】专题10.环境描写及其作用-2024年五升六暑期阅读专项提升(统编版)5
- DL∕T 1057-2023 自动跟踪补偿消弧线圈成套装置技术条件
- 【电商直播对消费者购买行为影响:以抖音直播为例开题报告1800字】
- 抑郁病诊断证明书
- 气体分析仪检定规程
- 2024-2029年吞咽困难饮食增稠剂行业市场现状供需分析及市场深度研究发展前景及规划投资研究报告
- (高清版)WST 348-2024 尿液标本的采集与处理
- FZT 73012-2017 文胸行业标准
- 肺系病的中医护理
评论
0/150
提交评论