在 CGContextRef 上绘制了一个图像:
CGContextDrawImage(context, CGRectMake(0, 0, width, height), image);
在另一个函数中,我想将图像移动到矩形
CGRectMake(100, 100, width, height);
我能怎么做?
void func(CGContextRef context)//there is just one parameter
{
//move the image
}