I have doubts about the resizing of images in my iphone app. So the user takes a picture or choses one from the gallery and then this pic is sent to a server. I already have the code from this answer to resize the pic:
UIImage * small=[self imageByScalingToSize:CGSizeMake(150,150) img:image];
The size is just an example.
I send small to the server but I have to things to take into account:
- The image has to be less or equal to 150 kilobytes, and
- I have read here that when the user sends images over 3G the iphone automatically resizes the image to (800,600).
So what I would like to do is to resize image to (800,600) (this part I already have) and then check if it is more than 150k and somehow reduce it if it is.
Is there a way to calculate the number of bytes of the image knowing the size and maybe some other data ?
How could I achieve this size reduction in means of file size ?
convert your UIImage to NSData and user -length to get the byte size of the image.
from apple documentation:
you can convert the UIImage using either
or