图片加水印效果的实现并保存至相冊 实现效果如图: project下载:githubproject下载链接 代码: - (void)viewDidLoad { [super viewDidLoad]; UIImage *image = [UIImage imageNamed:@"pushu.jpg"] ...
分类:
移动开发 时间:
2017-08-04 10:10:28
阅读次数:
271
oc版本号 //万花筒模式 + (CGImageRef) getKaleidoscope:(CIContext *)context { CIImage * image = [CIImage imageWithCGImage:[UIImage imageNamed:@"Icon"].CGImage]; ...
分类:
编程语言 时间:
2017-07-31 12:31:48
阅读次数:
225
ViewController.h #import <UIKit/UIKit.h> @interface ViewController : UIViewController { UIImage *_image; NSInteger _index; } @endViewController.m #imp ...
分类:
其他好文 时间:
2017-07-25 16:00:52
阅读次数:
127
直接上代码: // // AppDelegate.m // // #import "AppDelegate.h" #import "RootViewController.h" #import "FirstViewController.h" #import "SecnodViewController. ...
分类:
其他好文 时间:
2017-07-23 13:30:16
阅读次数:
191
猫猫分享,必须精品 原创文章,欢迎转载。转载请注明:翟乃玉的博客 地址:http://blog.csdn.net/u013357243?viewmode=contents 一:加入导航控制器 上一篇博客完毕了对底部的TabBar的设置。这一章我们完毕自己定义导航控制器(NYNavigationCon ...
分类:
移动开发 时间:
2017-07-14 23:04:16
阅读次数:
277
原文地址:http://stackoverflow.com/questions/9766394/get-exif-data-from-uiimage-uiimagepickercontroller ...
分类:
其他好文 时间:
2017-07-13 16:07:16
阅读次数:
405
解决这个问题:将两个图像拼接在一起 前提:须要加入Framework:CoreGraphics.framework 源代码: - (UIImage *) combine:(UIImage*)leftImage :(UIImage*)rightImage { CGFloat width = leftI ...
分类:
移动开发 时间:
2017-07-01 14:27:31
阅读次数:
166
+(UIImage*)createImageFromView:(UIView*)view { //obtain scale CGFloat scale = [UIScreen mainScreen].scale; 開始画图,以下方法。第一个參数表示区域大小。第二个參数表示是否是非透明的。假设须要显示 ...
分类:
移动开发 时间:
2017-06-29 19:15:04
阅读次数:
353
+ (NSArray*)getRGBAsFromImage:(UIImage*)image atX:(int)x andY:(int)y count:(int)count { NSMutableArray *result = [NSMutableArray arrayWithCapacity:cou ...
分类:
其他好文 时间:
2017-06-19 12:55:32
阅读次数:
193
具体实现思路: 1.假设边框宽度为BorderW 2.开启的图片上下文的尺寸就应该是原始图片的宽高分别加上两倍的BorderW,这样开启的目的是为了不让原始图片变形. 3.在上下文上面添加一个圆形填充路径.位置从0,0点开始,宽高和上下文尺寸一样大.设置颜色为要设置的边框颜色. 4.继续在上下文上面 ...
分类:
其他好文 时间:
2017-06-15 12:40:45
阅读次数:
233