OC调用相机并且给拍好的照片添加水印

OC调用相机并且给拍好的照片添加水印

今天我们学习一下iOS调用原生相机并且给照片添加水印要怎么做。

首先我们新建一个项目,在开始写代码之前我们要添加权限。找到项目的Info.plist文件,添加相机和相册的使用权限。右键>Add Row 添加 "Privacy - Photo Library Usage Description" 和 "Privacy - Camera Usage Description"的key。value填写自定义提示文字。(当用户第一次要使用相机和相册的时候会弹出提示框)


1-1

Privacy - Photo Library Usage Description
Privacy - Camera Usage Description

话不多说直接贴代码。

先导入头文件

#import <Photos/Photos.h>
@interface ViewController ()<UIImagePickerControllerDelegate>
@property (strong,nonatomic)  UIImagePickerController * pickerImage;

UIImagePickerController的初始化

self.pickerImage =[[UIImagePickerController alloc] init];
    if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]){
        UIImagePickerControllerSourceType sourceType = UIImagePickerControllerSourceTypeCamera;//设置类型为相机
        self.pickerImage.delegate = self;//设置代理
        self.pickerImage.allowsEditing = YES;//设置照片可编辑
        self.pickerImage.sourceType = sourceType;
        //设置是否显示相机控制按钮 默认为YES
        self.pickerImage.showsCameraControls = YES;

        //创建叠加层(例如添加的相框,这里通过这种方式可以在拍照的时候把水印直接显示在相机上) 
        UIView *overLayView=[[UIView alloc]initWithFrame:CGRectMake(0, 60, s_width, s_height - 200)];
        UILabel * telLbl = [[UILabel alloc]initWithFrame:CGRectMake(40, s_height - 300 - 200, 300, 30)];
        telLbl.textColor = UIColor.whiteColor;
        telLbl.text = [NSString stringWithFormat:@"手机号:%@",self.shouji.text];
        [overLayView addSubview:telLbl];
        UILabel * jingduLbl = [[UILabel alloc]initWithFrame:CGRectMake(40, s_height - 268 - 200, 300, 30)];
        jingduLbl.text =  [NSString stringWithFormat:@"经度:%@",jingdu] ;
        jingduLbl.textColor = UIColor.whiteColor;
        [overLayView addSubview:jingduLbl];
        UILabel * weiduLbl = [[UILabel alloc]initWithFrame:CGRectMake(40, s_height - 236 - 200, 300, 30)];
        weiduLbl.text = [NSString stringWithFormat:@"纬度:%@",weidu];
        weiduLbl.textColor = UIColor.whiteColor;
        [overLayView addSubview:weiduLbl];
        UILabel * dizhiLbl = [[UILabel alloc]initWithFrame:CGRectMake(40, s_height - 202 - 200, 400, 30)];
        dizhiLbl.text = [NSString stringWithFormat:@"地址:%@",dizhi];
        dizhiLbl.textColor = UIColor.whiteColor;
        [overLayView addSubview:dizhiLbl];
        UILabel * shijianLbl = [[UILabel alloc]initWithFrame:CGRectMake(40, s_height - 170 - 200, 300, 30)];
        shijianLbl.text = [NSString stringWithFormat:@"时间:%@",currentDateStr];
        shijianLbl.textColor = UIColor.whiteColor;
        [overLayView addSubview:shijianLbl];
        UILabel * beizhuLbl = [[UILabel alloc]initWithFrame:CGRectMake(40, s_height - 138 - 200, 300, 30)];
        beizhuLbl.text = [NSString stringWithFormat:@"备注:%@",self.beizhu.text];;
        beizhuLbl.textColor = UIColor.whiteColor;
        [overLayView addSubview:beizhuLbl];

        //选择前置摄像头或后置摄像头
        self.pickerImage.cameraDevice=UIImagePickerControllerCameraDeviceRear;
        //调用系统摄像头
        [self presentViewController:self.pickerImage animated:YES completion:^{
        }];
        }

拍照以后通过代理方法获取当前得到的图片

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{
    
    // 获取用户拍摄的是照片还是视频
   UIImage *theImage =nil;
        // 判断,图片是否允许修改
   if ([picker allowsEditing])
   {
       // 获取用户编辑之后的图像
       theImage = [info objectForKey:UIImagePickerControllerEditedImage];
   }
   else
   {
       // 获取原始的照片
       theImage = [info objectForKey:UIImagePickerControllerOriginalImage];
   }
    [self composeImg:theImage];
}

水印简单来说就是两张图片何在一起,我们现在现在来通过UIView画一张图片,把它当做简单的水印,当然大家自己有水印素材可以直接跳过这一步,用两个UIImage对象去合成一张图片

- (void)initLogoImage
{
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    //设定时间格式,这里可以设置成自己需要的格式
    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    //用[NSDate date]可以获取系统当前时间
    NSString *currentDateStr = [dateFormatter stringFromDate:[NSDate date]];
    //创建叠加层(例如添加的相框)
    UIView *overLayView=[[UIView alloc]initWithFrame:CGRectMake(0, 0, s_width, s_height - 200)];
    UILabel * telLbl = [[UILabel alloc]initWithFrame:CGRectMake(40, s_height - 300 - 200, 300, 30)];
    telLbl.textColor = UIColor.whiteColor;
    telLbl.text = [NSString stringWithFormat:@"手机:%@",self.shouji.text];
    [overLayView addSubview:telLbl];
    UILabel * jingduLbl = [[UILabel alloc]initWithFrame:CGRectMake(40, s_height - 268 - 200, 300, 30)];
    jingduLbl.text =  [NSString stringWithFormat:@"经度:%@",jingdu] ;
    jingduLbl.textColor = UIColor.whiteColor;
    [overLayView addSubview:jingduLbl];
    UILabel * weiduLbl = [[UILabel alloc]initWithFrame:CGRectMake(40, s_height - 236 - 200, 300, 30)];
    weiduLbl.text = [NSString stringWithFormat:@"纬度:%@",weidu];
    weiduLbl.textColor = UIColor.whiteColor;
    [overLayView addSubview:weiduLbl];
    UILabel * dizhiLbl = [[UILabel alloc]initWithFrame:CGRectMake(40, s_height - 202 - 200, 400, 30)];
    dizhiLbl.text = [NSString stringWithFormat:@"地址:%@",dizhi];
    dizhiLbl.textColor = UIColor.whiteColor;
    [overLayView addSubview:dizhiLbl];
    UILabel * shijianLbl = [[UILabel alloc]initWithFrame:CGRectMake(40, s_height - 170 - 200, 300, 30)];
    shijianLbl.text = [NSString stringWithFormat:@"时间:%@",currentDateStr];
    shijianLbl.textColor = UIColor.whiteColor;
    [overLayView addSubview:shijianLbl];
    UILabel * beizhuLbl = [[UILabel alloc]initWithFrame:CGRectMake(40, s_height - 138 - 200, 300, 30)];
    beizhuLbl.text = [NSString stringWithFormat:@"备注:%@",self.beizhu.text];
    beizhuLbl.textColor = UIColor.whiteColor;
    [overLayView addSubview:beizhuLbl];
    overLayView.backgroundColor = [UIColor clearColor];
    _logoImage = [self convertViewToImage:overLayView];
}

// 传入UIView生成UIImage对象使用该方法不会模糊,根据屏幕密度计算
- (UIImage *)convertViewToImage:(UIView *)view {
    UIImage *imageRet = [[UIImage alloc]init];
    //UIGraphicsBeginImageContextWithOptions(区域大小, 是否是非透明的, 屏幕密度); 这里透明度指的是背景是否透明
    UIGraphicsBeginImageContextWithOptions(view.frame.size, NO, [UIScreen mainScreen].scale);
    [view.layer renderInContext:UIGraphicsGetCurrentContext()];
    imageRet = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return imageRet;
}

ConvertViewToImage的方法拿到的图片我们把它作为水印和拍好的照片画到一起

// 我这里方法传进来的是主图片 _logoImage是作为水印图片
- (void)composeImg:(UIImage *)image{
    CGFloat w = 1000;
    CGFloat h = 1000;
    //以主图片的大小作为底图
    //以主图片为画布创建上下文
    UIGraphicsBeginImageContext(CGSizeMake(s_width, s_height));
    //先把1.png 画到上下文中
    [image drawInRect:CGRectMake(0, 0, s_width, s_height)];
    //再把小图放在上下文中  位子坐标自己慢慢调整
    [_logoImage drawInRect:CGRectMake(20, 20, w, h)];
    //从当前上下文中获得最终图片
    UIImage *resultImg = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();//关闭上下文
    // 预览我们合成的照片
    [self showResultPhoto:resultImg];
}
    // 预览我们得到的图片 
- (void)showResultPhoto:(UIImage *)image{
    photoImage = [UIImageView new];
    photoImage.image = image;
    [self.view addSubview:photoImage];
    photoImage.frame = self.view.frame;
    saveBtn = [UIButton allloc]initWithFrame:CGRectMake(x, y, width, height)];// 保存图片的按钮
    [saveBtn setTitle:@"使用相片" forState:UIControlStateNormal];
    self.phtotImage = image;
    [saveBtn addTarget:self action:@selector(saveSWPhoto) forControlEvents:UIControlEventTouchUpInside];
    [saveBtn setBackgroundColor:UIColor.grayColor];
    [self.view addSubview:saveBtn];
}
// 保存所得到的图片
- (void)saveSWPhoto{
    ShowHUBInController;
    [[PHPhotoLibrary sharedPhotoLibrary]performChanges:^{
        [PHAssetChangeRequest creationRequestForAssetFromImage:self.phtotImage];
    } completionHandler:^(BOOL success, NSError * _Nullable error) {
        if (error) {
            dispatch_async(dispatch_get_main_queue(), ^{
                HideHUBInController;;
                ShowHUBInWindowAutoHid(@"保存失败");
            });

            NSLog(@"%@",@"保存失败");
            NSLog(@"%@",error);
        } else {
            dispatch_async(dispatch_get_main_queue(), ^{
                HideHUBInController;
                ShowHUBInWindowAutoHid(@"保存成功");
            });
            NSLog(@"%@",@"保存成功");
        }
    }];
}

这里我们来看看软件的截图和拍出的照片的样子吧


打开相机

预览照片

保存到相册的照片

感觉还是不错的,嘿嘿。有什么不好的地方麻烦大家帮忙指出,我们共同学习。
如果能帮到大家,就给我点个赞吧。谢谢大家。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,544评论 6 501
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,430评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,764评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,193评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,216评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,182评论 1 299
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,063评论 3 418
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,917评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,329评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,543评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,722评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,425评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,019评论 3 326
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,671评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,825评论 1 269
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,729评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,614评论 2 353