I started to study windows azure cloud and how to use it with iOS. My goal is to create an application that uploads a picture taken with iPhones camera and store it to azure.
I opened an azure account to www.windowsazure.com/ and followed the instructions in the page to create a mobile service. Then I downloaded the quickstart xcode project which is automatically connected to my newly created mobile service.
Text upload works like a charm I was able to store text to the mobile service using the quickstart app. The problems started when I wanted to store an image taken with the iPhones camera.
I created another view to quickstart project where I can launch the camera and when picture is taken it is stored to UIImageView. Then when I click the publish button I run this code:
- (IBAction)PublishButtonPressed:(id)sender {
NSString *imageData = nil;
if (self.PhotoImageView.image != nil) {
NSData* data = UIImagePNGRepresentation(self.PhotoImageView.image);
[Base64 initialize];
imageData = [Base64 encode:data];
}
int tmp = imageData.length;
NSDictionary *item = @{ @"text" : self.ImageTextField.text, @"complete" : @(NO), @"imageString":imageData };
[self.todoService addItem:item completion:^(NSUInteger index){
UIAlertView* alertView = [[UIAlertView alloc] initWithTitle:@"Photo uploaded successfully" message:nil delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
}];
}
I am able to upload a small PNG and JPG file, less than 6KB but I think the camera image is too big for my database? Or is it just too big to be sent with phones connection? How can I make it smaller?
I am using the TodoService to upload the data to the server.

the TodoServicesomething I should know what it is? EDIT: Ah, something from the Azure samples. – Joachim Isaksson Feb 15 at 8:06