实现window中的bitblt功能
#if 1
UIGraphicsBeginImageContext(CGSizeMake(230,230));
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextClipToRect(ctx, rcClip);
CGContextTranslateCTM(ctx, 0.0, h);
CGContextScaleCTM(ctx, 1.0, -1.0);
CGContextDrawImage(ctx, rcDes, img.CGImage);
CGImageRef imgRef = CGBitmapContextCreateImage(ctx);
UIGraphicsEndImageContext();
UIImage *imgModify = [UIImage imageWithCGImage:imgRef];
#else
CGImageRef imgRef = CGImageCreateWithImageInRect(img.CGImage, rcClip);
UIImage *imgModify = [UIImage imageWithCGImage:imgRef];
#endif