UIImage规模和平铺

时间:2013-06-18 21:26:02

标签: image uikit scale tiling

是否可以在UIImageView中显示UIImage,以便图像同时进行缩放和平铺?

例如,它应该以实际分辨率的2倍缩放,但是在UIImageView的整个大小上平铺。

这可行吗?

1 个答案:

答案 0 :(得分:0)

这应该有效:

UIImage *image = [UIImage imageNamed:@"tile"];
UIImage *newImage = [UIImage imageWithCGImage:[image CGImage] scale:0.5 orientation:image.imageOrientation];
[self.myImageView setBackgroundColor:[UIColor colorWithPatternImage:newImage]];