Its not possible. You can get the original Image size via following method
UIImage *image = imageView.image;
CGSize size = image.size;
size
The dimensions of the image, taking orientation into account. (read-only)
@property(nonatomic, readonly) CGSize size