我正在使用ALAsset Framework访问设备照片库中的文件。
到目前为止,我可以访问缩略图并显示它 我想在图像视图中显示实际图像,但我无法弄清楚如何执行此操作。
我尝试使用ALAsset对象中的URL字段,但未成功。
有谁知道如何做到这一点?
以下是我可以访问缩略图并将其放在表格单元格中的一些代码:
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
//here 'asset' represents the ALAsset object
asset = [assets objectAtIndex:indexPath.row];
//i am accessing the thumbnail here
[cell.imageView setImage:[UIImage imageWithCGImage:[asset thumbnail]]];
[cell.textLabel setText:[NSString stringWithFormat:@"Photo %d", indexPath.row+1]];
return cell;
}
答案 0 :(得分:93)
API已稍微更改了规则,您无法再直接访问iPhoto图库。相反,你得到这样的资产库URL。
assets-library://asset/asset.JPG?id=1000000003&ext=JPG
使用ALAssetLibrary对象通过URL访问ALAsset对象。
所以从ALAssetLibrary的文档中将其抛入标题(或您的源代码)
typedef void (^ALAssetsLibraryAssetForURLResultBlock)(ALAsset *asset);
typedef void (^ALAssetsLibraryAccessFailureBlock)(NSError *error);
这不是严格需要的,但要保持漂亮 然后在你的来源。
-(void)findLargeImage
{
NSString *mediaurl = [self.node valueForKey:kVMMediaURL];
//
ALAssetsLibraryAssetForURLResultBlock resultblock = ^(ALAsset *myasset)
{
ALAssetRepresentation *rep = [myasset defaultRepresentation];
CGImageRef iref = [rep fullResolutionImage];
if (iref) {
largeimage = [UIImage imageWithCGImage:iref];
[largeimage retain];
}
};
//
ALAssetsLibraryAccessFailureBlock failureblock = ^(NSError *myerror)
{
NSLog(@"booya, cant get image - %@",[myerror localizedDescription]);
};
if(mediaurl && [mediaurl length] && ![[mediaurl pathExtension] isEqualToString:AUDIO_EXTENSION])
{
[largeimage release];
NSURL *asseturl = [NSURL URLWithString:mediaurl];
ALAssetsLibrary* assetslibrary = [[[ALAssetsLibrary alloc] init] autorelease];
[assetslibrary assetForURL:asseturl
resultBlock:resultblock
failureBlock:failureblock];
}
}
需要注意的一点是,在我开始iOS4移植之前,这会使用对我来说不熟悉的块,但您可能希望看一下
https://www.mikeash.com/pyblog/friday-qa-2008-12-26.html
和
他们弯曲了一下你的脑袋,但如果你认为它们是通知选择器或回调它会有所帮助。
另外
findLargeImage
返回时
resultblock不会像它一样运行
回调。所以大图像不会
有效。 largeImage
需要成为
实例变量没有作用域
方法我在使用此方法时使用此构造执行此操作,但您可能会找到更适合您使用的内容。
[node.view findLargeImage];
UIImage *thumb = node.view.largeImage;
if (thumb) { blah blah }
无论如何,这都是我学到的东西。
iOS 5更新
当iOS5&和iOS5&amp ;;结果块触发时似乎有点慢可能是单核设备,因此我无法在调用findLargeImage
后直接使用图像。所以我把它改成了一个代表。
@protocol HiresImageDelegate <NSObject>
@optional
-(void)hiresImageAvailable:(UIImage *)aimage;
@end
和commecá
//
ALAssetsLibraryAssetForURLResultBlock resultblock = ^(ALAsset *myasset)
{
ALAssetRepresentation *rep = [myasset defaultRepresentation];
CGImageRef iref = [rep fullResolutionImage];
if (iref) {
UIImage *largeimage = [UIImage imageWithCGImage:iref];
[delegate hiresImageAvailable:large];
}
};
答案 1 :(得分:15)
ALAssetsLibraryAssetForURLResultBlock resultblock = ^(ALAsset *myasset)
{
ALAssetRepresentation *rep = [myasset defaultRepresentation];
CGImageRef iref = [rep fullResolutionImage];
if (iref)
{
UIImage *largeimage = [UIImage imageWithCGImage:iref scale:[rep scale] orientation:[rep orientation]];
[delegate hiresImageAvailable:large];
}
};
在这种情况下,imageWIthCGImage
调用具有比例,并在为您创建orientation
时添加了UIImage
。
[UIImage imageWithCGImage:iref scale:[rep scale] orientation:[rep orientation]];
需要注意的一个技巧是,如果你在iOS 5上使用[rep fullScreenImage]
而不是[rep fullResolutionImage]
,你会得到一张已经旋转过的图像 - 但它是iPhone屏幕的分辨率 - 即它在较低的分辨率。
答案 2 :(得分:9)
将Warren和oknox的答案合并为一个较短的片段:
ALAssetsLibrary *assetsLibrary = [[ALAssetsLibrary alloc] init];
[assetsLibrary assetForURL:self.selectedPhotos[i] resultBlock: ^(ALAsset *asset){
ALAssetRepresentation *representation = [asset defaultRepresentation];
CGImageRef imageRef = [representation fullResolutionImage];
if (imageRef) {
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
imageView.image = [UIImage imageWithCGImage:imageRef scale:representation.scale orientation:representation.orientation];
// ...
}
} failureBlock: ^{
// Handle failure.
}];
我个人喜欢将failureBlock
设置为nil
。
答案 3 :(得分:8)
NSURL* aURL = [NSURL URLWithString:@"URL here"];
ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
[library assetForURL:aURL resultBlock:^(ALAsset *asset)
{
UIImage *copyOfOriginalImage = [UIImage imageWithCGImage:[[asset defaultRepresentation] fullScreenImage] scale:0.5 orientation:UIImageOrientationUp];
cell.backgroundView = [[UIImageView alloc] initWithImage:copyOfOriginalImage];
}
failureBlock:^(NSError *error)
{
// error handling
NSLog(@"failure-----");
}];
只提供你在上面提供的photolibrary中获得的UIReferenceURl ...它的工作正常。 。我把它浸透了
UIcollectionView单元格
..如果您只想在
的UIImageView
表示
更改强>
cell.backgroundView = [[UIImageView alloc] initWithImage:copyOfOriginalImage];
要强>
imageView.image = copyOfOriginalImage;