的UIImagePickerController图像尺寸(UIImagePickerControll

2019-09-27 08:53发布

我在我的应用程序中使用的UIImagePickerController拍照,我用我自己的控件,这意味着的UIImagePickerController showsCameraControls属性设置为NO,我有一个拍摄图片的OverlayView的内部一个UIButton。 现在,我发现,我保存在照片库中的图像实际上是显示出比在预览窗口中显示的内容更大的区域。 有其他人有同样的问题? 任何解决方案,使显示正是在预览图片?

Answer 1:

通过预览我想,你是在谈论影像选择器接口(而不是解雇图片选择界面后出现的默认预览屏幕)。

您适用于图像选择器接口(使用cameraViewTransform)的变换DONOT反映拍摄的图像上。 例如,如果你试图放大(输入和输出)应用的规模,你需要为了保持图像中的图像拾取界面和实际保存的图像同步获得的图像上应用相同的(变换)。
你还必须将图像方向考虑考虑,同时将变换。



Answer 2:

从选择器获取图像对象后,调整图像,然后裁剪

我需要同样的事情 - 在我的情况,挑选适合一旦缩放尺寸,然后裁剪两端向其他适合的宽度。 (我在园林工作,所以可能没有注意到在纵向模式下的任何缺陷),这里是我的代码 - 这是对UIImage的一个categeory的一部分。 在我的目标代码的大小始终设置到设备的整个屏幕大小。

@implementation UIImage (Extras)

#pragma mark -
#pragma mark Scale and crop image

- (UIImage*)imageByScalingAndCroppingForSize:(CGSize)targetSize
{
UIImage *sourceImage = self;
UIImage *newImage = nil;    
CGSize imageSize = sourceImage.size;
CGFloat width = imageSize.width;
CGFloat height = imageSize.height;
CGFloat targetWidth = targetSize.width;
CGFloat targetHeight = targetSize.height;
CGFloat scaleFactor = 0.0;
CGFloat scaledWidth = targetWidth;
CGFloat scaledHeight = targetHeight;
CGPoint thumbnailPoint = CGPointMake(0.0,0.0);

if (CGSizeEqualToSize(imageSize, targetSize) == NO) 
    {
    CGFloat widthFactor = targetWidth / width;
    CGFloat heightFactor = targetHeight / height;

    if (widthFactor > heightFactor) 
        scaleFactor = widthFactor; // scale to fit height
    else
        scaleFactor = heightFactor; // scale to fit width
    scaledWidth  = width * scaleFactor;
    scaledHeight = height * scaleFactor;

    // center the image
    if (widthFactor > heightFactor)
        {
        thumbnailPoint.y = (targetHeight - scaledHeight) * 0.5; 
        }
    else 
        if (widthFactor < heightFactor)
            {
            thumbnailPoint.x = (targetWidth - scaledWidth) * 0.5;
            }
    }   

UIGraphicsBeginImageContext(targetSize); // this will crop

CGRect thumbnailRect = CGRectZero;
thumbnailRect.origin = thumbnailPoint;
thumbnailRect.size.width  = scaledWidth;
thumbnailRect.size.height = scaledHeight;

[sourceImage drawInRect:thumbnailRect];

newImage = UIGraphicsGetImageFromCurrentImageContext();
if(newImage == nil) 
    NSLog(@"could not scale image");

//pop the context to get back to the default
UIGraphicsEndImageContext();
return newImage;
}


文章来源: UIImagePickerController image size