Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6198211
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:57:27+00:00 2026-05-24T03:57:27+00:00

I want to send a photo from the camera roll to a web services

  • 0

I want to send a photo from the camera roll to a web services – including its exif data.
Im using ASIFormDataRequest – so I do :

ASIFormDataRequest *request = [[ASIFormDataRequest alloc]initWithURL:url];

To save memory I directly want to send the file:

[request addFile:localPath forKey:@"image"];

So i need the local path of the asset.
I think I can not get the local path of an asset, so I temporarily save the asset to a file:

ALAsset* selectedAsset = [assets objectAtIndex:index];
CGImageRef imageRef = selectedAsset.defaultRepresentation.fullScreenImage;
UIImage* image = [UIImage imageWithCGImage:imageRef];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES); 
NSString *cachesDirectory = [paths objectAtIndex:0];

NSData* imageData = UIImagePNGRepresentation(image);
NSString* filePath = [NSString stringWithFormat:@"%@/imageTemp.png",cachesDirectory];
[imageData writeToFile:filePath atomically:YES];

Then later I use this path to do the

[request addFile:localPath forKey:@"image"];

the image gets sent to the server – but without the exif data I need.
Besides that, I think there must be a smarter way to do that.

tia

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T03:57:27+00:00Added an answer on May 24, 2026 at 3:57 am

    ok – i think i figured it out. The trick is to go with the defaultRepresentaion’s raw data:

    ALAsset* selectedAsset = [assets objectAtIndex:index];
    
    int byteArraySize = selectedAsset.defaultRepresentation.size;
    
    NSMutableData* rawData = [[NSMutableData alloc]initWithCapacity:byteArraySize];
    void* bufferPointer = [rawData mutableBytes];
    
    NSError* error=nil;
    [selectedAsset.defaultRepresentation getBytes:bufferPointer fromOffset:0 length:byteArraySize error:&error];
    if (error) {
        NSLog(@"%@",error);
    }
    rawData = [NSMutableData dataWithBytes:bufferPointer length:byteArraySize];
    
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES); 
    NSString *cachesDirectory = [paths objectAtIndex:0];
    NSString* filePath = [NSString stringWithFormat:@"%@/imageTemp.png",cachesDirectory];
    [rawData writeToFile:filePath atomically:YES];
    

    After using the path to send the image to the server the file on the server keeps all the exif data

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to upload a file(photo) from Flex to Rails and then send a
I'm using the ASIHTTPRequest package to send some data from the iPhone to my
Hello Sir i want send list of data to php server i use following
Want to send the text from my current vb application to the Active Window
I want to send SMS using LWUIT. what class should i be looking at?
I would like to capture an image from the camera on Android, and send
I have to send a byte array (encoded photo) from my PHP client to
I want to send the following header using curl: curl -H 'Authorization: OAuth oauth_signature_method=PLAINTEXT,⤦
Making an app where we want to send a photo to a server along
i want to send UIImage from one class to another . In FirstViewController.m i

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.