1

屏幕图片链接savePic图片链接,你可以找到screenImg和savePic的区别。我将 backgroundImageView 设置为一个非常小的 png。我想将背景图像视图保存为图片。在iPhone模拟器屏幕中,图像边缘正常,但savePic边缘不清晰。任何人都可以告诉我如何保存高清图片。

- (void)viewDidLoad
{
    [super viewDidLoad];
    //_backImgView 320*480
    self.backImgView.image = [UIImage imageNamed:@"Purple.png"];

    [self performSelector:@selector(savePic) withObject:nil afterDelay:0.1];
}

- (void)savePic
{
    BOOL isDir;
    NSString *dirPath = [NSHomeDirectory() stringByAppendingPathComponent:@"/Documents/Pic"]; 
    NSFileManager *fm = [NSFileManager defaultManager];
    if(![fm fileExistsAtPath:dirPath isDirectory:&isDir]){
        BOOL bo = [fm createDirectoryAtPath:dirPath withIntermediateDirectories:YES attributes:nil error:nil];
        if(!bo){
            NSLog(@"-->Create CardSlide Dir Fail!!!");
            return;
        }
    }

    UIGraphicsBeginImageContext(_backImgView.bounds.size);
    //UIGraphicsBeginImageContextWithOptions(_backImgView.bounds.size, _backImgView.opaque, 2.0);
    CGContextSetAllowsAntialiasing(UIGraphicsGetCurrentContext(), YES);
    [_backImgView drawRect:_backImgView.bounds];
    //[_backImgView.layer renderInContext:UIGraphicsGetCurrentContext()];

    UIImage *bgImg = UIGraphicsGetImageFromCurrentImageContext();  
    UIGraphicsEndImageContext();

    NSString *path = [NSString stringWithFormat:@"save_%@.jpg", @"demo"];
    NSString *jpgPath = [dirPath stringByAppendingPathComponent:path]; 
    BOOL isSucc = [UIImageJPEGRepresentation(bgImg, 1.0) writeToFile:jpgPath atomically:YES];
    NSLog(@"%@ write photo %@!", jpgPath, isSucc?@"SUCC":@"FAIL");
}
4

1 回答 1

0

使用小图像,不可能以正确的方式将其缩放到更大的图像,您将始终通过模糊、嘈杂的图像但是如果您的图像可以具有可拉伸的重复部分,您可以在不创建新图像的情况下拉伸图像的内部. UIImage 中有两个 API 调用:(
– resizableImageWithCapInsets:仅 ios5)
– stretchableImageWithLeftCapWidth:topCapHeight:(在 iOS 5.0 中已弃用)
如果您找到正确的插图,您可以避免创建新图像,基本上是用于在消息应用程序中创建气泡的相同系统。气球真的很小,但它有一个可拉伸的区域,可以保持纵横比。
由于图像非常简单,您也可以考虑使用 Quartz 函数创建矩形路径来绘制它,路径“几乎”与 res 无关,只需将它们缩放到正确的大小。

于 2012-06-19T06:12:33.143 回答