作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
有人知道如何从 PHImageManager 获取平方拇指吗? PHImageContentModeAspectFill 选项无效。
[[PHImageManager defaultManager]
requestImageForAsset:(PHAsset *)_asset
targetSize:CGSizeMake(80, 80)
contentMode:PHImageContentModeAspectFill
options:nil
resultHandler:^(UIImage *result, NSDictionary *info) {
// sadly result is not a squared image
imageView.image = result;
}];
最佳答案
更新:
从 PHImageManager
检索图像时裁剪图像的错误在 iOS 8.3 中已修复,因此对于该版本的 iOS 及更高版本,我的原始示例有效,如下所示:
似乎错误仍然存在,包括 iOS 8.4,我可以用标准的 iPhone 6s 后置摄像头图像重现它们,并采用全尺寸方形裁剪。它们在 iOS 9.0 中得到了适当的修复,即使是 63 兆像素全景的大片也能正常工作。
Apple 定义的方法是通过 CGRect
在图像的坐标空间中,原点为 (0,0),最大值为 (1,1)。您在 PHImageRequestOptions
中传递此矩形对象,以及 resizeMode
的 PHImageRequestOptionsResizeModeExact
,然后你应该得到一个裁剪的图像。
- (void)showSquareImageForAsset:(PHAsset *)asset
{
NSInteger retinaScale = [UIScreen mainScreen].scale;
CGSize retinaSquare = CGSizeMake(100*retinaScale, 100*retinaScale);
PHImageRequestOptions *cropToSquare = [[PHImageRequestOptions alloc] init];
cropToSquare.resizeMode = PHImageRequestOptionsResizeModeExact;
CGFloat cropSideLength = MIN(asset.pixelWidth, asset.pixelHeight);
CGRect square = CGRectMake(0, 0, cropSideLength, cropSideLength);
CGRect cropRect = CGRectApplyAffineTransform(square,
CGAffineTransformMakeScale(1.0 / asset.pixelWidth,
1.0 / asset.pixelHeight));
cropToSquare.normalizedCropRect = cropRect;
[[PHImageManager defaultManager]
requestImageForAsset:(PHAsset *)asset
targetSize:retinaSquare
contentMode:PHImageContentModeAspectFit
options:cropToSquare
resultHandler:^(UIImage *result, NSDictionary *info) {
self.imageView.image = result;
}];
}
cropRect
边长等于 Assets 的宽度和高度中的较小者,然后使用
CGRectApplyAffineTransform
将其转换为图像的坐标空间.您可能需要设置
square
的原点对于 (0,0) 以外的其他东西,您通常希望裁剪正方形沿正在裁剪的图像的轴居中,但我将把它作为练习留给读者。 :-)
imageView
的方法显示从 PHImageManager 获取的方形缩略图。
contentMode
UIImageView
的属性(property)设置为
ScaleAspectFill
.默认为
ScaleToFill
,无法正常显示
PHImageManager
中的方形缩略图,所以无论你是否实例化了
UIImageView
,请确保你改变了它。在代码或 Storyboard 中。
//view dimensions are based on points, but we're requesting pixels from PHImageManager
NSInteger retinaMultiplier = [UIScreen mainScreen].scale;
CGSize retinaSquare = CGSizeMake(imageView.bounds.size.width * retinaMultiplier, imageView.bounds.size.height * retinaMultiplier);
[[PHImageManager defaultManager]
requestImageForAsset:(PHAsset *)_asset
targetSize:retinaSquare
contentMode:PHImageContentModeAspectFill
options:nil
resultHandler:^(UIImage *result, NSDictionary *info) {
// The result is not square, but correctly displays as a square using AspectFill
imageView.image = result;
}];
PHImageRequestOptionsResizeModeExact
对于
resizeMode
不是必需的,因为它不会给您裁剪图像,除非您还提供
normalizedCropRect
, 并且不应该在这里使用,因为没有任何好处,并且使用它意味着您不会获得快速返回的缓存图像的好处。
UIImage
返回
result
将与源的纵横比相同,但可以正确缩放以用于
UIImageView
设置为方面填充以显示为正方形,因此如果您只是显示它,这就是要走的路。如果您需要裁剪图像以在应用程序之外打印或导出,这不是您想要的 - 查看
normalizedCropRect
的使用为了那个原因。 (编辑 - 参见下面的示例应该如何工作......)
imageView.contentMode=UIViewContentModeScaleAspectFill;
imageView.clipsToBounds=YES;
CGRect
在图像的坐标空间中,原点为 (0,0),最大值为 (1,1)。您在
PHImageRequestOptions
中传递此矩形对象,以及
resizeMode
的
PHImageRequestOptionsResizeModeExact
,然后你应该得到一个裁剪的图像。问题是你没有,它以原始纵横比和完整图像的形式返回。
PHImageRequestOptionsResizeModeExact
,但结果处理程序仍将传递原始纵横比的图像。这似乎是框架中的一个错误,当它被修复时,下面的代码应该可以工作。
- (void)showSquareImageForAsset:(PHAsset *)asset
{
NSInteger retinaScale = [UIScreen mainScreen].scale;
CGSize retinaSquare = CGSizeMake(100*retinaScale, 100*retinaScale);
PHImageRequestOptions *cropToSquare = [[PHImageRequestOptions alloc] init];
cropToSquare.resizeMode = PHImageRequestOptionsResizeModeExact;
CGFloat cropSideLength = MIN(asset.pixelWidth, asset.pixelHeight);
CGRect square = CGRectMake(0, 0, cropSideLength, cropSideLength);
CGRect cropRect = CGRectApplyAffineTransform(square,
CGAffineTransformMakeScale(1.0 / asset.pixelWidth,
1.0 / asset.pixelHeight));
cropToSquare.normalizedCropRect = cropRect;
[[PHImageManager defaultManager]
requestImageForAsset:(PHAsset *)asset
targetSize:retinaSquare
contentMode:PHImageContentModeAspectFit
options:cropToSquare
resultHandler:^(UIImage *result, NSDictionary *info) {
self.imageView.image = result;
}];
}
关于ios - 如何从 PHImageManager 获取平方缩略图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26023365/
我是一名优秀的程序员,十分优秀!