图片上下文的矩阵操作(平移,旋转,缩放)

2016-12-01  本文已影响106人  遇见灬最美的你

原图

平移

Paste_Image.png

旋转

Paste_Image.png

缩放

Paste_Image.png

具体代码如下

//
//  drawView.m
//  09-图片上下文的矩阵操作(了解)
//
//  Created by 李亮 on 2016/12/1.
//  Copyright © 2016年 www.thelast.com. All rights reserved.
//

#import "drawView.h"

@implementation drawView

- (void)drawRect:(CGRect)rect {
    
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    
    UIBezierPath * path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(50, 50, 100, 50)];
    
    [[UIColor redColor] set];
    
    //矩阵操作
    //移动
//    CGContextTranslateCTM(ctx, 100, 100);
    //旋转
    CGContextRotateCTM(ctx, M_PI_4);
    //缩放
//    CGContextScaleCTM(ctx, 1.5, 1.5);
    
    CGContextAddPath(ctx, path.CGPath);
    
    CGContextFillPath(ctx);
}

@end
上一篇下一篇

猜你喜欢

热点阅读