2011-11-10 17 views
20

Önceki soru ile ilgili olarak here. Bir görüntü yolunu UIImage öğesine bir dosya yolundan varlık kitaplığına yükleyin

Ben mesela, varlık kütüphanesinde bir görüntüye bir yol vardır:

Şimdi
assets-library://asset/asset.JPG?id=1000000001&ext=JPG 

, nasıl bir UIImage nesnesine bu yoldan resim yüklemek olabilir?

NSString *path = [occasion imagePath]; 

//temp 
NSLog(@"the 2nd occasion imagePath is: %@", path); 
//end 

if (path != nil) 
{ 
    //UIImage *image = [UIImage imageNamed:path]; 
    UIImage *image = [UIImage imageWithContentsOfFile:path]; 

    image = [image imageByScalingAndCroppingForSize:CGSizeMake(36.0, 42.0)]; 
    [[cell imageView] setImage:image]; 
} 

cevap

18

: Burada

kodudur

-(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]; 
    } 
} 
12

Aşağıdakileri deneyin: Yukarıda benim yorum bağlantılı cevaptan (UIImage *)imageWithContentsOfFile:(NSString *)path

0

Ayrıca almak için [myasset aspectRatioThumbnail] kullanabilir.NEWLINENEWLINEKonum görüntüsü.