如何显示PhotoLibrary中的特定图像?

时间:2012-07-04 04:07:30

标签: iphone objective-c cocoa-touch ios4

  

可能重复:
  display image from URL retrieved from ALAsset in iPhone

在我的应用程序中,我需要从照片库中获取特定图像,

使用 didFinishPickingMediaWithInfo 我可以获取Imagename和ImagePath。

我在数据库中存储Imagename,ImagePath。

但是,如何使用Photo Library中的Imageview中的Imagename或ImagePath显示特定图像?

2 个答案:

答案 0 :(得分:3)

请使用ALAssetLibrary。为此,请将AssetsLibrary.framework添加到项目中并编写以下代码。

您的文件名应如assets-library://asset/asset.JPG?id=1000000194&ext=JPG

NSString *fileName = @"assets-library://asset/asset.JPG?id=1000000194&ext=JPG";

typedef void (^ALAssetsLibraryAssetForURLResultBlock)(ALAsset *asset);
typedef void (^ALAssetsLibraryAccessFailureBlock)(NSError *error);    

ALAssetsLibraryAssetForURLResultBlock resultblock = ^(ALAsset *myasset)
{
    ALAssetRepresentation *rep = [myasset defaultRepresentation];
    CGImageRef iref = [rep fullResolutionImage];
    UIImage *images = nil;

    if (iref)
    {
        images = [UIImage imageWithCGImage:iref scale:[rep scale] orientation:(UIImageOrientation)[rep orientation]];       

        //doing UI operation on the main thread
         dispatch_async(dispatch_get_main_queue(), ^{

         yourImageView.image = images;

     });    

    }   
};

ALAssetsLibraryAccessFailureBlock failureblock  = ^(NSError *myerror)
{
    NSLog(@"can't get image");
};    

NSURL *asseturl = [NSURL URLWithString:fileName];

ALAssetsLibrary* assetslibrary = [[[ALAssetsLibrary alloc] init] autorelease];
[assetslibrary assetForURL:asseturl 
               resultBlock:resultblock   
              failureBlock:failureblock];

注意:

升级到iOS 5并进行代码重构以使用ARC后,您将收到错误

  

无效尝试访问ALAssetPrivate超过其生命周期   拥有ALAssetsLibraryrefactoring以使用ARC

要解决此问题,请添加静态方法以检索ALAssetLibrary类的共享实例。

+ (ALAssetsLibrary *)defaultAssetsLibrary {
    static dispatch_once_t pred = 0;
    static ALAssetsLibrary *library = nil;
    dispatch_once(&pred, ^{
        library = [[ALAssetsLibrary alloc] init];
    });
    return library; 
}

然后,使用[MyClass defaultAssetsLibrary];

访问它
[[MyClass defaultAssetsLibrary] assetForURL:asseturl 
                   resultBlock:resultblock   
                  failureBlock:failureblock];

答案 1 :(得分:0)

如果您有图像路径,则可以使用以下代码。让我们将imagePath作为NSString变量,包含图像路径,包括图像名称。

   NSData *thedata=[[NSData alloc]initWithContentsOfFile:imagePath];
     UIImageView *img=[[UIImageView alloc]initWithImage:[UIImage imageWithData:thedata]];

希望它有所帮助。