I'm getting some wierd results trying to reduce the filesize of a UIImage.
Code
UIImage *image = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
NSData *data = UIImageJPEGRepresentation(image, 0.5f);
UIImage *img = [[UIImage alloc] initWithData:data];
The variable img is what gets sent to the database. However it's never compressed.
What makes the whole thing even weirder is that it worked for a little while. That time i first tried to "fix it", but gave up and undid the changes. That's when it worked, when it went back to like before.
Later I made another change on a completely different part of the app, and again, the compression stopped working.
Does anybody have a clue of what's going on?