当前位置: 代码迷 >> Iphone >> iphone剪裁图片
  详细解决方案

iphone剪裁图片

热度:59   发布时间:2016-04-25 06:27:59.0
iphone裁剪图片

?

方法1:

?

- (void)drawRect:(CGRect)rect {

CGContextRef context=UIGraphicsGetCurrentContext();

//设置倒立

CGContextRotateCTM(context,M_PI);

//重新设置坐标 ?self.bounds获取整个屏幕的区域。

CGContextTranslateCTM(context, -self.bounds.size.width,-self.bounds.size.height);

//CGContextScaleCTM(context, 1.0, -1.0);

CGRect imageRect=recti;

//画底图

CGContextDrawImage(context, imageRect, image);

//填充颜色

CGContextSetRGBStrokeColor(context,0.0,0.0,0.0,1.0);

CGContextFillRect(context,self.bounds);

CGRect ret=CGRectMake(0.0, 0.0, 180, 180);

//裁剪

CGContextClipToRect(context, ret);

?

//获取裁剪区域

CGRect boudsc=CGContextGetClipBoundingBox(context);

int cleft = boudsc.origin.x;

int ctop = boudsc.origin.y;

int cwidth = boudsc.size.width;

int cheight = boudsc.size.height;

?

//画出裁剪区域

CGContextDrawImage(context, self.bounds, image);

}

?

?

方法2:

UIImage *image=[UIImage imageNamed:@"**.png"];

创建矩形

根据矩形创建image

uiimageview.image=[UIimage imagewidthCGImage:CGImageCreateWidthImageInRect:([image CGImage],矩形)];

将image添加到imageview中

显示view

?

  相关解决方案