美文网首页
iOS高仿微信图标编辑

iOS高仿微信图标编辑

作者: 未央生 | 来源:发表于2022-05-02 13:54 被阅读0次

iOS高仿微信图标编辑

Installation

pod 'CLPhotoCrop'

Example

  • 导入头文件
  #import "CLPhotoCrop.h"
  • 跳转
  CLPhotoShopViewController *vc = [[CLPhotoShopViewController alloc] init];
  vc.orgImage = [UIImage clp_imageNamed:@"bg"];
  vc.delegate = self;
  [self presentViewController:vc animated:true completion:nil];
  • 代理
  ///CLPhotoShopViewControllerDelegate
  - (void)CLPhotoShopViewControllerFinishImage:(UIImage *)image {
    self.imageView.image = image;
  }

涂鸦

Simulator Screen Shot - iPhone 11 - 2022-05-02 at 13.42.58.png

表情

Simulator Screen Shot - iPhone 11 - 2022-05-02 at 13.43.13.png

文字

Simulator Screen Shot - iPhone 11 - 2022-05-02 at 13.43.48.png

裁剪

Simulator Screen Shot - iPhone 11 - 2022-05-02 at 13.43.54.png

马赛克画笔

Simulator Screen Shot - iPhone 11 - 2022-05-02 at 13.44.15.png

模糊画笔

Simulator Screen Shot - iPhone 11 - 2022-05-02 at 13.44.28.png

完成效果

Simulator Screen Shot - iPhone 11 - 2022-05-02 at 13.44.34.png

相关文章

网友评论

      本文标题:iOS高仿微信图标编辑

      本文链接:https://www.haomeiwen.com/subject/hgtvyrtx.html