1.获得屏幕图像 - (UIImage *)imageFromView: (UIView *) theView { ?? ? ??? UIGraphicsBeginImageContext(theView.frame.size); ??? CGContextRef context = UIGraphicsGetCurrentContext(); ??? ...
分类:
移动开发 时间:
2015-03-20 19:00:09
阅读次数:
194
1.线 // 1.获得图形上下文 CGContextRef ctx = UIGraphicsGetCurrentContext(); // 设置线宽 CGContextSetLineWidth(ctx, 5); // 设置颜色 CGContextSetRGBStrokeColor(ctx...
分类:
移动开发 时间:
2015-03-20 12:24:09
阅读次数:
336
#pragma mark 绘制圆弧-(void) drawArc:(CGContextRef)context{ //1.设置路径 /** 1)context 上下文 2)x,y 圆弧所在圆的中心点坐标 3)radius 半径 4)startAngle en...
分类:
其他好文 时间:
2015-02-17 12:53:21
阅读次数:
137
#pragma mark 绘制图像-(void)drawImage:(CGContextRef)context{ UIImage *image = [UIImage imageNamed:@"1.png"]; //提示:绘制之后,就无法改变位置,也没有办法监听手势 ...
分类:
其他好文 时间:
2015-02-17 12:51:55
阅读次数:
194
#pragma mark 绘制图像-(void)drawImage:(CGContextRef)context{ UIImage *image = [UIImage imageNamed:@"1.png"]; //提示:绘制之后,就无法改变位置,也没有办法监听手势 ...
分类:
其他好文 时间:
2015-02-17 12:49:53
阅读次数:
137
#pragma mark 绘制文字(中文)-(void)drawText2:(CGContextRef)context{ NSString *string = @"博阿士大夫撒风景撒开了房间撒"; //1.获取字体 NSLog(@"%@",[UIFont familyNames])...
分类:
其他好文 时间:
2015-02-17 12:49:38
阅读次数:
117
CoreGraphics详解CoreGraphics详解
CoreGraphics绘图
绘制一个矩形
绘制一个椭圆
绘制曲线
绘制圆形
链接点来绘制为图形CoreGraphics绘图绘制一个矩形CGRect rectangle=CGRectMake(0, 0, 200, 200);
//获取当前图形
CGContextRef ctx=UIGraphicsGetCurrentCon...
分类:
其他好文 时间:
2015-02-12 18:38:38
阅读次数:
186
#pragma mark - 将图片转换成圆形-(UIImage*) circleImage:(UIImage*) image withParam:(CGFloat) inset { UIGraphicsBeginImageContext(image.size); CGContextRef co.....
分类:
移动开发 时间:
2015-02-04 12:34:36
阅读次数:
180
我们都知道,给手机屏幕做截图很容易,如下面代码
- (UIImage*) imageWithUIView:(UIView*) view{
// 创建一个bitmap的context
// 并把它设置成为当前正在使用的context
UIGraphicsBeginImageContext(view.bounds.size);
CGContextRef currn...
分类:
其他好文 时间:
2015-01-29 14:37:16
阅读次数:
157
- (void)drawRect:(CGRect)rect {
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextClearRect(context, rect);
CGContextSetLineWidth(context, _lineWidth); ...
分类:
移动开发 时间:
2015-01-28 17:58:57
阅读次数:
183