Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to pick an image from the photo library or from the camera. The delegate - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo gives me the UIImage object. I need to find the size of the image in bytes for my application.

Is there any way I can get the file type of the image and also the size in the bytes?

Any kind of help would be highly appreciated.

Thanks in advance

share|improve this question

3 Answers

up vote 15 down vote accepted

Try the following code:

NSData *imageData = [[NSData alloc] initWithData:UIImageJPEGRepresentation((image), 0.5)];

int imageSize = imageData.length;
NSLog(@"SIZE OF IMAGE: %i ", imageSize);
share|improve this answer
thanks it worked for me... :):) – devsri Jun 17 '11 at 12:54

You can check out the link... get size of a uiimage (bytes length) not height and width

May be it helps

share|improve this answer
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)editInfo{
   UIImage *image=[editInfo valueForKey:UIImagePickerControllerOriginalImage];
   NSURL *imageURL=[editInfo valueForKey:UIImagePickerControllerReferenceURL];
   __block long long realSize;

   ALAssetsLibraryAssetForURLResultBlock resultBlock=^(ALAsset *asset)
   {
      ALAssetRepresentation *representation=[asset defaultRepresentation];
      realSize=[representation size];
   };

   ALAssetsLibraryAccessFailureBlock failureBlock=^(NSError *error)
   {
      NSLog(@"%@", [error localizedDescription]);
   };

   if(imageURL)
   {
      ALAssetsLibrary *assetsLibrary=[[[ALAssetsLibrary alloc] init] autorelease];
      [assetsLibrary assetForURL:imageURL resultBlock:resultBlock failureBlock:failureBlock];
   }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.