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
}