0

我正在使用此代码将图像保存到相册中,但图像正在保存在相机胶卷相册中。我想将图像保存在 WEAVE 相册中。我正在使用这段代码:

CGRect screenRect=CGRectMake(0, 0, viewPlay.frame.size.width, viewPlay.frame.size.height);
UIGraphicsBeginImageContext(screenRect.size);
CGContextRef ctx=UIGraphicsGetCurrentContext();
[[UIColor whiteColor] set];
CGContextFillRect(ctx, screenRect);
[self->viewPlay.layer renderInContext:ctx];
UIImage *screenImage=UIGraphicsGetImageFromCurrentImageContext();
UIImageWriteToSavedPhotosAlbum(screenImage, nil, nil, nil);
UIGraphicsEndImageContext();

这段代码对我来说很好。请给我任何建议,我在这里做了哪些更改以将图像保存到 WEAVE 文件夹中。

4

1 回答 1

0

您可以使用以下代码执行此操作:

ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];

[library saveImage:image toAlbum:@"Midhun" withCompletionBlock:^(NSError *error) {
        if (error!=nil)
        {
            NSLog(@"Error: %@", [error description]);
        }
    }];

还可以查看本教程:自定义相册

有关ALAssetsLibrary的更多信息

于 2013-01-16T05:09:19.660 回答