gpt4 book ai didi

iphone - 使用 nsdata 在 标签中显示图像

转载 作者:可可西里 更新时间:2023-11-01 05:38:55 25 4
gpt4 key购买 nike

这可能吗?我的应用程序将从服务器下载一个 zip 文件,我将所有图像保存在一个数组中,如下所示:

    ZipReadStream *read = [unzipFile readCurrentFileInZip];
NSMutableData *data = [[NSMutableData alloc] initWithLength:info.length];
int bytesRead= [read readDataWithBuffer:data];

if(bytesRead > 0)
{
[imagesData addObject:data];
[imagesName addObject:info.name];
}

然后我过滤要在 uiview 内显示的 w/c 图像和要在 uiwebview 内显示的 w/c 图像。我像这样在 uiview 中显示图像:

    UIImage *imageForThisQuestion = [[UIImage alloc]initWithData:[imagesData       
objectAtIndex:indexOfThisImage]];

这在 uiview 中工作正常。但是如何在 uiwebview 中显示一些图像?我可以在这里使用标签吗?而且我的 uiwebview 可能会以这种格式出现:

    "blah blah blah blah <img src...> blah blah blah <img src...>"

最佳答案

您不想将图像保存在文件中以在 html 中引用它,例如 < img src="myimage.png">,对吗?您可以使用 data URI scheme将您的图像编码为 URI,并使用

之类的 img 标签

hear如何对图像的 NSData 进行 base64 编码。

关于iphone - 使用 nsdata 在 <img> 标签中显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7553681/

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