0

我正在制作一个应用程序,用户在其中选择图像,通过缩放(在 uiscrollview 中)调整它的大小并在视图中移动它。完成后,我想保存图像,就像我们在 uiscrollview 中看到的那样。你有什么主意吗 ?

谢谢。

4

1 回答 1

1

这是代码......

这里 frontGround 是一个图像视图,而 testScrool 是滚动视图

希望这对你有用。

UIGraphicsBeginImageContext(testScrool.frame.size);
CGContextRef currentContext = UIGraphicsGetCurrentContext();
CGRect clippedRect = CGRectMake(0, 0, testScrool.frame.size.width, testScrool.frame.size.height);
CGContextClipToRect(currentContext, clippedRect);
CGRect drawRect = CGRectMake(testScrool.frame.origin.x * -1,
                             testScrool.frame.origin.y * -1,frontGround.frame.size.width,                            frontGround.frame.size.height);
CGContextDrawImage(currentContext, drawRect, frontGround.image.CGImage);
UIImage *cropped = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
frontGround.image = cropped;
于 2010-10-29T06:49:37.823 回答