获取图片的尺寸
CGImageRef img = [self.imageView.image CGImage];NSLog(@"%d", CGImageGetWidth(img));NSLog(@"%d", CGImageGetHeight(img));
?