我有帧大小为 200 * 200 的 UIImageView。我想从适合该帧的相机或库中拍照。
你有任何例子可以做到这一点,比如 Instagram、Pose 应用程序。
谢谢
我有帧大小为 200 * 200 的 UIImageView。我想从适合该帧的相机或库中拍照。
你有任何例子可以做到这一点,比如 Instagram、Pose 应用程序。
谢谢
此方法允许您在图像上设置要裁剪的矩形,并返回裁剪后的图像。享受你的种植:)
- (UIImage *)cropImage:(UIImage *)image inRect:(CGRect)rect {
CGImageRef imageRef = CGImageCreateWithImageInRect(image.CGImage, rect);
UIImage *resultImage = [UIImage imageWithCGImage:imageRef];
CGImageRelease(imageRef);
return resultImage;
}