作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在保存 UIImage
的缩略图以提高我的 UICollectionView
滚动的性能。在我尝试保存自下而上拍摄的全景照片之前,所有图像都是直立保存的(例如:高度 - 3000,宽度 - 1000)。这倒存了。我拍了一张人像照片并旋转了 90 度,因为最初图像是横向的。有没有办法用一行代码将每种类型的图像设置为直立,或者我是否必须捕捉每种类型的照片并相应地进行调整?如果是这样怎么办?
- (void) createThumbnail: (UIImage *) image{
CGSize size = image.size;
CGFloat imageHeight = size.height;
CGFloat imageWidth = size.width;
CGSize croppedSize;
CGFloat ratio = 200.0;
CGFloat offsetX = 0.0;
CGFloat offsetY = 0.0;
if (imageWidth > imageHeight) {
offsetX = (imageHeight - imageWidth) / 2;
croppedSize = CGSizeMake(imageHeight, imageHeight);
} else {
offsetY = (imageWidth - imageHeight) / 2;
croppedSize = CGSizeMake(imageWidth, imageWidth);
}
CGRect clippedRect = CGRectMake(offsetX * -1, offsetY * -1, croppedSize.width, croppedSize.height);
CGImageRef imageRef = CGImageCreateWithImageInRect([image CGImage], clippedRect);
CGRect rect = CGRectMake(0.0, 0.0, ratio, ratio);
UIGraphicsBeginImageContext(rect.size);
[[UIImage imageWithCGImage:imageRef] drawInRect:rect];
UIImage *thumbnail;
if ((imageWidth > imageHeight) || (imageWidth == imageHeight)) {
thumbnail = [[UIImage alloc]initWithCGImage:UIGraphicsGetImageFromCurrentImageContext().CGImage scale:1.0 orientation:UIImageOrientationUp];
}else{
thumbnail = [[UIImage alloc]initWithCGImage:UIGraphicsGetImageFromCurrentImageContext().CGImage scale:1.0 orientation:UIImageOrientationRight];
}
UIGraphicsEndImageContext();
return thumbnail;
最佳答案
我必须从 didFinishPickingMediaWithInfo
中选择的图像而不是裁剪的缩略图获取图像方向。
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
choosenImage = info[UIImagePickerControllerOriginalImage];
long orientation = choosenImage.imageOrientation;
UIImage *thumbnail = [self createThumbnail:choosenImage withOrientation: orientation];
}
UIGraphicsBeginImageContext(rect.size);
[[UIImage imageWithCGImage:imageRef] drawInRect:rect];
UIImage *thumbnail;
if (orientation == UIImageOrientationUp) {
thumbnail = UIGraphicsGetImageFromCurrentImageContext();
}else if (orientation == UIImageOrientationRight){
thumbnail = [[UIImage alloc]initWithCGImage:UIGraphicsGetImageFromCurrentImageContext().CGImage scale:1.0 orientation:UIImageOrientationRight];
}else if (orientation == UIImageOrientationLeft){
thumbnail = [[UIImage alloc]initWithCGImage:UIGraphicsGetImageFromCurrentImageContext().CGImage scale:1.0 orientation:UIImageOrientationLeft];
}else if (orientation == UIImageOrientationDown){
thumbnail = [[UIImage alloc]initWithCGImage:UIGraphicsGetImageFromCurrentImageContext().CGImage scale:1.0 orientation:UIImageOrientationUpMirrored];
}
UIGraphicsEndImageContext();
关于ios - 保存 UIImage 的缩略图会横向/上下翻转图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31420356/
我有一个具有可变数量子元素的固定大小的 div。我不知道 children 的大小。目标是缩小它们以适合父级。 例子: .parent { width: 100px; height: 100p
我是一名优秀的程序员,十分优秀!