原图
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
网友评论