iOS实现裁剪框和图片剪裁功能_IOS

图片处理中经常用的图片剪裁,就是通过剪裁框确定图片剪裁的区域,然后剪去该区域的图片,今天实现了一下,其实图片剪裁本身不难,主要剪裁框封装发了点时间,主要功能可以拖动四个角缩放,但不能超出父视图,拖动四个边单方向缩放,不能超出父视图,拖动中间部分单单移动,不改变大小,不能超出父视图。下面列举一些主要代码。
四个角的处理代码:

-(void)btnPanGesture:(UIPanGestureRecognizer*)panGesture
{
 UIView *vw = panGesture.view;
 CGRect oldFrame = self.frame;
 CGRect oldIntersectRect = CGRectIntersection(self.frame, self.superview.bounds);

 CGPoint transport = [panGesture translationInView:vw];
 if (vw.tag == 4) {
  self.width = self.preFrame.size.width + transport.x;
  self.height = self.preFrame.size.height + transport.y;
 }
 else if(vw.tag == 3)
 {
  self.x = self.preFrame.origin.x + transport.x;
  self.width = self.preFrame.size.width - transport.x;
  self.height = self.preFrame.size.height + transport.y;
 }
 else if(vw.tag == 2)
 {
  self.width = self.preFrame.size.width + transport.x;
  self.y = self.preFrame.origin.y + transport.y;
  self.height = self.preFrame.size.height - transport.y;
 }
 else if(vw.tag == 1)
 {
  self.x = self.preFrame.origin.x + transport.x;
  self.width = self.preFrame.size.width - transport.x;
  self.y = self.preFrame.origin.y + transport.y;
  self.height = self.preFrame.size.height - transport.y;
 }
 if (panGesture.state == UIGestureRecognizerStateEnded) {
  self.preFrame = self.frame;
 }
 if (self.width < MinWidth || self.height < MinHeight) {
  self.frame = oldFrame;
 }
 CGRect newFrame = self.frame;
 if (newFrame.size.width * newFrame.size.height > oldFrame.size.height * oldFrame.size.width) {

  CGRect newIntersectRect = CGRectIntersection(self.frame, self.superview.bounds);
  if (newFrame.size.width * newFrame.size.height > newIntersectRect.size.width * newIntersectRect.size.height) {
   self.frame = oldFrame;
  }
 }
 self.preCenter = self.center;
}

我是通过视图于父视图的frame的交集部分的面积判断是否超出父视图的。
四个边的控制代码:

-(void)viewPanGesture:(UIPanGestureRecognizer*)panGesture
{
 UIView *vw = panGesture.view;
 CGRect oldFrame = self.frame;
 CGRect oldIntersectRect = CGRectIntersection(self.frame, self.superview.bounds);

 CGPoint transport = [panGesture translationInView:vw];
 if (vw.tag == 1) {
  self.y = self.preFrame.origin.y + transport.y;
  self.height = self.preFrame.size.height - transport.y;
 }
 else if(vw.tag == 2)
 {
  self.x = self.preFrame.origin.x + transport.x;
  self.width = self.preFrame.size.width - transport.x;
 }
 else if(vw.tag == 3)
 {
  self.height = self.preFrame.size.height + transport.y;
 }
 else if(vw.tag == 4)
 {
  self.width = self.preFrame.size.width + transport.x;
 }
 if (panGesture.state == UIGestureRecognizerStateEnded) {
  self.preFrame = self.frame;
 }
 if (self.width < MinWidth || self.height < MinHeight) {
  self.frame = oldFrame;

 }
 self.preCenter = self.center;
 CGRect newFrame = self.frame;
 if (newFrame.size.width * newFrame.size.height > oldFrame.size.height * oldFrame.size.width) {

  CGRect newIntersectRect = CGRectIntersection(self.frame, self.superview.bounds);
  if (oldIntersectRect.size.width * oldIntersectRect.size.height >= newIntersectRect.size.width * newIntersectRect.size.height) {
   self.frame = oldFrame;
   self.preCenter = self.preCenter;
  }

 }

}

中间部分移动的控制代码:

-(void)contentViewPanGestureAction:(UIPanGestureRecognizer*)panGesture
{
 CGPoint transport = [panGesture translationInView:self];
 CGRect oldFrame = self.frame;
 CGRect oldIntersectRect = CGRectIntersection(self.frame, self.superview.bounds);
 CGFloat oldMj = oldIntersectRect.size.width * oldIntersectRect.size.height;

 self.center = CGPointMake(self.preCenter.x + transport.x, self.preCenter.y + transport.y);

 if (panGesture.state == UIGestureRecognizerStateEnded) {

  self.preCenter = self.center;
 }
 CGRect newIntersectRect = CGRectIntersection(self.frame, self.superview.bounds);
 CGFloat newMj = newIntersectRect.size.width * newIntersectRect.size.height;

 if (newMj < oldMj) {
  self.frame = oldFrame;
  self.preCenter = self.center;
 }
}

剪裁框实现的核心代码如上,个人觉得最不好处理的是对超出父视图的控制,要保证不能超出父视图,个人主要用到的是通过子视图与父视图的交集部分的面积的改变来获知是否超出父视图,如果超出父视图,就会退到之前的frame,不知道是否还有其他好的方法,有的话可以一起交流一下。

图片剪裁部分
代码如下:

-(void)cropImg
{
 CGRect cropFrame = self.cropView.frame;
 CGFloat orgX = cropFrame.origin.x * (self.img.size.width / self.imgView.frame.size.width);
 CGFloat orgY = cropFrame.origin.y * (self.img.size.height / self.imgView.frame.size.height);
 CGFloat width = cropFrame.size.width * (self.img.size.width / self.imgView.frame.size.width);
 CGFloat height = cropFrame.size.height * (self.img.size.height / self.imgView.frame.size.height);
 CGRect cropRect = CGRectMake(orgX, orgY, width, height);
 CGImageRef imgRef = CGImageCreateWithImageInRect(self.img.CGImage, cropRect);

 CGFloat deviceScale = [UIScreen mainScreen].scale;
 UIGraphicsBeginImageContextWithOptions(cropFrame.size, 0, deviceScale);
 CGContextRef context = UIGraphicsGetCurrentContext();
 CGContextTranslateCTM(context, 0, cropFrame.size.height);
 CGContextScaleCTM(context, 1, -1);
 CGContextDrawImage(context, CGRectMake(0, 0, cropFrame.size.width, cropFrame.size.height), imgRef);
 UIImage *newImg = UIGraphicsGetImageFromCurrentImageContext();
 CGImageRelease(imgRef);
 UIGraphicsEndImageContext();

 ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
 [library toolWriteImageToSavedPhotosAlbum:newImg.CGImage metadata:nil completionBlock:^(NSURL *assetURL, NSError *error) {
  if(error)
  {
   JGLog(@"写入出错");
  }
 } groupName:@"相册名称"];
}

这里要注意一点CGContextDrawImage这个函数的坐标系和UIKIt的坐标系上下颠倒,需对坐标系处理如下:

CGContextTranslateCTM(context, 0, cropFrame.size.height);
CGContextScaleCTM(context, 1, -1);

看看效果:

剪裁之后的图片:

以上就是本文的全部内容,希望对大家的学习有所帮助。

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索iOS裁剪框
iOS图片剪裁
js 图片裁剪功能实现、如何实现图片剪裁上传、二维裁剪的实现、js实现裁剪图片、直线段裁剪算法的实现,以便于您获取更多的相关知识。

时间: 2024-10-29 16:02:15

iOS实现裁剪框和图片剪裁功能_IOS的相关文章

IOS提醒用户重新授权打开定位功能_IOS

iOS 8及以上版本最不为人知的一个特点是与应用设置的深层链接,用户可以根据APP的需要授权启用位置.通知.联系人.相机.日历以及健康等设置. 大多数应用程序仅仅是弹出一个包含操作指令的警示窗口,如"进入设置>隐私>位置>OUR_APP".例如,推特的应用程序有一个更为精致和友好的指示对话框,所以我就把它当做一个例子来使用(可惜大多数应用程序都会有一个非常糟糕的版本). 我现在以一个心情沮丧用户的身份写这个帖子,希望更多的iOS开发者能与用户设置建立直接的深层链接,尤

iOS UIWebView实现禁止用户复制剪切功能_IOS

前言 在APP的混合模式开发,Android开发中有WebView作为混合模式开发的桥梁,当然在IOS中也同样有一个 UIWebView 组件来作为混合模式开发的桥梁,用过UIWebView组件的开发者都知道,当UIWebView加载显示HTML页面时,组件本身提供了一些系统默认的交互行为,这篇文章给大家分享的是iOS UIWebView实现禁止用户复制剪切功能,下面来一起看看. 示例代码 // 控制器实现此方法 - (BOOL)canPerformAction:(SEL)action with

使用UItableview在iOS应用开发中实现好友列表功能_IOS

基本实现一.项目结构和plist文件 二.实现代码 1.说明: 主控制器直接继承UITableViewController 复制代码 代码如下: //  YYViewController.h //  02-QQ好友列表(基本数据的加载) // //  Created by apple on 14-5-31. //  Copyright (c) 2014年 itcase. All rights reserved. // #import <UIKit/UIKit.h> @interface YYV

iOS实现二维码的扫描功能_IOS

直接上代码,就不多废话了 // // ViewController.m // QRCode // // Created by chenchen on 15/7/30. // Copyright (c) 2015年 BSY. All rights reserved. // #import <AVFoundation/AVFoundation.h> #import "ViewController.h" @interface ViewController ()<AVCapt

Android自定义View实现照片裁剪框与照片裁剪功能_Android

本文所需要实现的就是这样一种有逼格的效果: 右上角加了个图片框,按下确定可以裁剪正方形区域里的图片并显示在右上角. 实现思路: 1:首先需要自定义一个ZoomImageView来显示我们需要的图片,这个View需要让图片能够以合适的位置展现在当前布局的图片展示区域内(合适的位置值的是:如果图片长度大于屏幕,则压缩图片长度至屏幕宽度,高度等比压缩并居中显示,如果图片高度大于屏幕,则压缩图片高度至屏幕高度,长度等比压缩并居中显示.): 2:然后需要实现这个拖动的框框,该框框实现的功能有四点:拖动.扩

iOS实现压缩图片上传功能_IOS

本文实例为大家分享了iOS实现压缩图片上传功能,供大家参考,具体内容如下 #pragma mark - 打开相机 -(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info{ UIImage *image = info[UIImagePickerControllerOriginalImage]; s

javascript-请问前端怎么实现裁剪、传图片和传文件的功能?

问题描述 请问前端怎么实现裁剪.传图片和传文件的功能? 有前辈遇到过类似的需求吗? 其中之一也行.. 解决方案 前端裁剪.插入照片貌似都有工具插件!你上网找找 解决方案二: 只靠前端解决不了这个问题,需要服务器端的配合才行. 解决方案三: 可以用actionScript 写一个swf实现这个功能. 解决方案四: 稍微有点麻烦,建议用PHP试试,网上例子很多,http://www.jb51.net/article/39683.htm 解决方案五: 裁剪图片可以用jcrop:http://jcrop

jQuery实现下拉框选择图片功能实例_jquery

本文实例讲述了jQuery实现下拉框选择图片功能.分享给大家供大家参考.具体如下: 让下拉框中显示图片,并可选择对应图片,让select下拉框不仅可显示文字,还可以显示图片内容.为了更生动些,这里还加入了jQuery动画效果,当展开Select列表的时候,图片渐变显示.使用了一个jQ插件:imageselect.js,使用效果的朋友可以自己下载吧. 运行效果截图如下: 具体代码如下: <!DOCTYPE html> <head> <title>支持图片选择的jQuery

IOS开发相册图片多选和删除的功能_IOS

照例先上效果图 本次用的第三方框架做这个,但是需要考虑的地方也比较多,怎么把拍照和相册选取结合.删除照片后添加新照片时候的相册状态等等,所有的改变都是在操作数组.还需考虑图片的压缩上传. 本次用的第三方框架为:QBImagePickerController 按照惯例,上代码,本次代码较多 第一个控制器 .h里没啥代码 #import "RRZShowEditViewController.h" #import "RRZSendShowTextCell.h" #impo