我创建了一个视图大小的位图。当视图增加高度时,如何增加此位图的高度并按如下方式绘制:
- (void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSaveGState(context);
if (myBitmapContext)
{
CGImageRef imageref = CGBitmapContextCreateImage(myBitmapContext);
CGContextDrawImage(context, rect, imageref);
CGImageRelease(imageref);
}
CGContextRestoreGState(context);
}
感谢您的帮助!!
答案 0 :(得分:0)
您可以在绘制图像之前使用CGContextScaleCTM