0

アプリから Web サービスに写真をアップロードしようとしています。

私が作成しようとしているフローは次のとおりです。

  1. ユーザーがカメラで写真を撮る
  2. 写真はカスタム アルバムの下のカメラ ロールに保存されます
  3. 保存した写真のURLがマイストアに付与される
  4. ストアは、写真を Web サービスにアップロードしようとします。

NSData *data = [NSData dataWithContentsOfURL:[item assetURL]]対象の URL を含むモデルである where itemを使用しようとしています。しかし、この行は、URL を生成しても、ログに記録するとデータを生成しません。"assets-library://asset/asset.PNG?id=28DBC0AC-21FF-4560-A9D6-5F4BCA190BDB&ext=PNG"

コード スニペットは次のとおりです。

-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{

    UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage];



    [self dismissViewControllerAnimated:YES completion:^(void){

        [library writeImageToSavedPhotosAlbum:image.CGImage orientation:image.imageOrientation completionBlock:^(NSURL* assetURL, NSError* error) {

            BCard *card = [[BCard alloc]init];

            //error handling
            if (error!=nil) {
                NSLog(@"[ERROR] - %@",error);
                return;
            }

            //add the asset to the custom photo album
            [library addAssetURL: assetURL
                         toAlbum:@"Business Cards"
             withCompletionBlock:^(NSError *error) {
                 if (error!=nil) {
                     NSLog(@"Custom Album Error: %@", [error description]);
                 }
             }];

            [card setAssetURL:assetURL];

            [[BCardStore sharedStore]addToQueue:card];
            int index = [[[BCardStore sharedStore]getQueue]count]-1;

            [[BCardStore sharedStore]uploadItemAtIndex:index withProgressBlock:nil withExitBlock:nil];

        }];
    }];


}

-(void)uploadItemAtIndex:(NSUInteger)index withProgressBlock:(progressBlock)pBlock withExitBlock:(exitBlock)eBlock
{
    BCard *item = [uploadQueue objectAtIndex:index];
    NSURL *url = [NSURL URLWithString:@"http://192.168.0.116:8080"];
    NSData *data = [NSData dataWithContentsOfURL:[item assetURL]];
    AFHTTPClient *httpClient = [[AFHTTPClient alloc]initWithBaseURL:url];
    numberedName = numberedName +1;
    NSString *name = [NSString stringWithFormat:@"%d",numberedName];

    NSLog(@"%@",[item assetURL]);

//upload data using AFNetworking here
}

スニペットは、ここで[library addAssetUrl:NSUrl toAlbum:NSString withCompletionBlock:^(NSError *error)]見つけたカテゴリからのものです。

ここで本当に正しい URL を取得していますか、dataWithContentsOfURLそれとも間違って使用していますか?

4

1 に答える 1

1

唯一の方法は、ALAsset URLを使用してPhoto-LibraryからUIImageを取得し、NSDataに変換することです。

ALAssetLibraryを追加します

ALAssetLibraryヘッダーファイルをインポートします

-(void)uploadItemAtIndex:(NSUInteger)index 
       withProgressBlock:(progressBlock)pBlock 
           withExitBlock:(exitBlock)eBlock
{  

    ALAssetsLibraryAssetForURLResultBlock resultblock = ^(ALAsset *myasset)
    {
        ALAssetRepresentation *rep;
        if([myasset defaultRepresentation] == nil) {
            return;
        } else {
            rep = [myasset defaultRepresentation];
        }
        CGImageRef iref = [rep fullResolutionImage];

        dispatch_sync(dispatch_get_main_queue(), ^{


            UIImage *myImage = [UIImage imageWithCGImage:iref];            
            NSData *data = //convert the myImage to NSData

            BCard *item = [uploadQueue objectAtIndex:index];
            NSURL *url = [NSURL URLWithString:@"http://192.168.0.116:8080"];  
            AFHTTPClient *httpClient = [[AFHTTPClient alloc]initWithBaseURL:url];
            numberedName = numberedName +1;
            NSString *name = [NSString stringWithFormat:@"%d",numberedName];



            //upload data using AFNetworking here


        });//end block


    };
    ALAssetsLibraryAccessFailureBlock failureblock  = ^(NSError *myerror)
    {
        NSLog(@"Cant get image - %@",[myerror localizedDescription]);
    };

    NSURL *asseturl = 
        [NSURL URLWithString:[self.photoPath objectAtIndex:[arrayIndex intValue] ]];
    //using ARC , you have to declare ALAssetsLibrary as member variable 
    ALAssetsLibrary* assetslibrary = [[ALAssetsLibrary alloc] init]; 

    [assetslibrary assetForURL:assetURL 
                   resultBlock:resultblock
                  failureBlock:failureblock]; 

}
于 2012-11-23T05:16:19.890 に答える