将图像加载到网络视图中

发布于 2024-12-10 17:52:34 字数 340 浏览 1 评论 0原文

如何将本地图像加载到 UIWebView 中的 html 页面中,调用该 UIWebView 时

[self.webView loadHTMLString:htmlSourceCode baseURL:externPageUrl];

我知道我可以通过更改 baseURL 来获取图像。然而,就我而言,这是不可能的。 我还尝试通过将 file://pathToImage/myimage.png 添加到 html 中来实现此目的,但是如果不更改 baseURL,这将不起作用。

有没有办法不必处理shouldStartLoadWithRequest 方法?

How can I have a local image loaded into a html page in a UIWebView that is called with

[self.webView loadHTMLString:htmlSourceCode baseURL:externPageUrl];

I know I can get the image by changing the baseURL. However, in my case, that is not possible.
I also tried doing it by adding file://pathToImage/myimage.png to the html, but that doesn't work without changing the baseURL.

Is there any way without having to handle the shouldStartLoadWithRequest method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

早茶月光 2024-12-17 17:52:34

只需将图像 src 设置为图像文件的名称,假设它与本地 HTML 文件位于同一文件夹中。

Just set the image src to the name of the image file, assuming it is in the same folder as the local HTML file.

物价感观 2024-12-17 17:52:34

我通过直接将图像字节加载到html中解决了这个问题:

//retrieve image data, to embedd into the html as base64
NSURL *imgURL = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"myImage" ofType:@"png"] isDirectory:NO];                  
NSData *data = [NSData dataWithContentsOfURL:imgURL];

[htmlContent appendFormat:@"<div class=\"myCssClass\" style=\"background:url(data:image/png;base64,%@) no-repeat center center;\" ></div>", 
[data encodeBase64] ];

I solved it by loading the image bytes into the html directly:

//retrieve image data, to embedd into the html as base64
NSURL *imgURL = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"myImage" ofType:@"png"] isDirectory:NO];                  
NSData *data = [NSData dataWithContentsOfURL:imgURL];

[htmlContent appendFormat:@"<div class=\"myCssClass\" style=\"background:url(data:image/png;base64,%@) no-repeat center center;\" ></div>", 
[data encodeBase64] ];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文