gpt4 book ai didi

objective-c - 以编程方式创建视网膜屏幕截图,生成非视网膜图像

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:05:48 24 4
gpt4 key购买 nike

我正在尝试以编程方式截取 Retina 屏幕截图,并且尝试了在网上找到的所有方法,但我无法将屏幕截图设为 Retina。

我了解以下私有(private) API:

UIGetScreenImage();

不能使用,因为 Apple 会拒绝您的应用。但是,此方法返回的正是我所需要的(屏幕的 640x960 屏幕截图)。

我已经在我的 iPhone 4 以及视网膜硬件上的 iPhone 4 模拟器上尝试过这种方法,但生成的图像始终是 320x480。

-(UIImage *)captureView
{

AppDelegate *appdelegate = [[UIApplication sharedApplication]delegate];


if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)])
UIGraphicsBeginImageContextWithOptions(appdelegate.window.bounds.size, NO, 0.0);
else
UIGraphicsBeginImageContext(appdelegate.window.bounds.size);


[appdelegate.window.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

NSLog(@"SIZE: %@", NSStringFromCGSize(image.size));
NSLog(@"scale: %f", [UIScreen mainScreen].scale);


return image;
}

我也试过苹果推荐的方式:

- (UIImage*)screenshot
{
// Create a graphics context with the target size
// On iOS 4 and later, use UIGraphicsBeginImageContextWithOptions to take the scale into consideration
// On iOS prior to 4, fall back to use UIGraphicsBeginImageContext
CGSize imageSize = [[UIScreen mainScreen] bounds].size;
if (NULL != UIGraphicsBeginImageContextWithOptions)
UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);
else
UIGraphicsBeginImageContext(imageSize);

CGContextRef context = UIGraphicsGetCurrentContext();

// Iterate over every window from back to front
for (UIWindow *window in [[UIApplication sharedApplication] windows])
{
if (![window respondsToSelector:@selector(screen)] || [window screen] == [UIScreen mainScreen])
{
// -renderInContext: renders in the coordinate space of the layer,
// so we must first apply the layer's geometry to the graphics context
CGContextSaveGState(context);
// Center the context around the window's anchor point
CGContextTranslateCTM(context, [window center].x, [window center].y);
// Apply the window's transform about the anchor point
CGContextConcatCTM(context, [window transform]);
// Offset by the portion of the bounds left of and above the anchor point
CGContextTranslateCTM(context,
-[window bounds].size.width * [[window layer] anchorPoint].x,
-[window bounds].size.height * [[window layer] anchorPoint].y);

// Render the layer hierarchy to the current context
[[window layer] renderInContext:context];

// Restore the context
CGContextRestoreGState(context);
}
}

// Retrieve the screenshot image
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

NSLog(@"Size: %@", NSStringFromCGSize(image.size));

return image;
}

但它也返回非视网膜图像:2012-12-23 19:57:45.205 明信片[3351:707] 尺寸:{320, 480}

有什么明显的我遗漏的东西吗?那些应该采用视网膜屏幕截图的方法怎么会返回非视网膜屏幕截图?提前致谢!

最佳答案

我没有发现您的代码有任何问题。除了 image.size,您是否尝试过记录 image.scale?是1还是2?如果它是 2,它实际上是一个视网膜图像。

UIImage.scale表示图像的比例。因此,UIImage.size 为 320×480 且 UIImage.scale 为 2 的图像的实际大小为 640×960。来自 Apple 的文档:

If you multiply the logical size of the image (stored in the size property) by the value in this property, you get the dimensions of the image in pixels.

这与使用 @2x 修饰符将图像加载到 UIImage 时的想法相同。例如:

a.png (100×80)      => size=100×80 scale=1
b@2x.png (200×160) => size=100×80 scale=2

关于objective-c - 以编程方式创建视网膜屏幕截图,生成非视网膜图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14016010/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com