我有一个 CATiledLayer 支持的 UIScrollView,它显示一个非常大的图像。我想要实现的是将此视图捕获到 UIImage 中(将其用作进度条视图的背景)。有几个问题:
- 在“100%”缩放(整个图片可见)看起来还可以
- 如果我放大滚动视图,一些图块会变形(比例和/或偏移量不好)
- 尝试使用 Apple 的 PhotoScroller 示例对其进行复制,该示例几乎可以正常工作,只是捕获的图像有时会像素化
- 我没有写代码,所以我不知道如何修复它
检查了有关此的其他stackoverflow条目,但它们并没有太大帮助...
图像捕获代码:
CGRect rect = [view bounds];
UIImage* img = nil;
if ([view isKindOfClass:[UIScrollView class]])
{
UIScrollView* scrollview = (UIScrollView*)view;
CGPoint contentOffset = scrollview.contentOffset;
UIGraphicsBeginImageContextWithOptions(rect.size, view.opaque, 0.0);
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(ctx, -contentOffset.x, -contentOffset.y);
[view.layer renderInContext:ctx];
img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
}
平铺视图的 drawRect: 方法的代码:
- (void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
if (self.clipContent)
{
CGContextSaveGState(context);
CGFloat color[4] = {1.0, 1.0f, 1.0f, 1.0f};
CGContextSetFillColor(context, color);
CGContextFillRect(context, self.bounds);
CGRect clips[] = {
CGRectMake(self.bounds.size.width / 2.0, 0,
self.bounds.size.height / 2.0 , self.bounds.size.width / 2.0)
};
CGContextClipToRects(context, clips, sizeof(clips) / sizeof(clips[0]));
}
CGFloat scale = CGContextGetCTM(context).a;
CGSize tileSize = [_dataSource tileSize];
double width = (double)tileSize.width / (double)scale;//pow(2.0, (int)log2(scale));
double height = (double)tileSize.height / (double)scale;//pow(2.0, (int)log2(scale));
int firstCol = floorf(CGRectGetMinX(rect) / width);
int lastCol = floorf((CGRectGetMaxX(rect) - 1) / width);
int firstRow = floorf(CGRectGetMinY(rect) / height);
int lastRow = floorf((CGRectGetMaxY(rect) - 1) / height);
for (int row = firstRow; row <= lastRow; row++) {
for (int col = firstCol; col <= lastCol; col++) {
UIImage* tileImage = [_dataSource tileForScale:scale row:row col:col];
CGRect tileRect = CGRectMake(width * col, height * row, width, height);
tileRect = CGRectIntersection(rect, tileRect);
[tileImage drawInRect:tileRect];
}
}
if (self.clipContent)
CGContextRestoreGState(context);
}
有任何想法吗?