gpt4 book ai didi

objective-c - 来自NSURL的缩略图

转载 作者:行者123 更新时间:2023-12-01 19:27:46 24 4
gpt4 key购买 nike

我正在UIUIView中加载从Web下载的文件(HTML文件)。

有没有一种方法可以从Documents文件夹中的HTML文件创建UIImage?

目标是自动生成缩略图,而无需手动创建它们。

更新
我的思路是做以下事情:

NSString * s =  [[NSBundle mainBundle] pathForResource:@"test" ofType:@"html"];
UIImage *image = [[UIImage alloc] initWithData:
[NSData dataWithContentsOfURL:url]];

在这种情况下,哪个当然不起作用!

谢谢!

S.

最佳答案

我找到了这个解决方案here

UIGraphicsBeginImageContext(yourWebView.bounds.size);
[yourWebView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *resultImageView = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
resultImageView将是包含 yourWebView渲染的图像。

如果您希望从那里将其缩小到缩略图大小,则我喜欢 Trevor's UIImage category

关于objective-c - 来自NSURL的缩略图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5792640/

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