gpt4 book ai didi

iphone - ios dropbox,在表格 View 中加载图像的缩略图

转载 作者:行者123 更新时间:2023-11-29 11:16:19 26 4
gpt4 key购买 nike

我的保管箱中有图片,需要在 Uitable View 中显示。我可以使用元数据 filemetadata 按名称显示图片,并且当我单击任何单元格时,我可以通过调用 loadthumbnail 成功地在 ImageView 中查看图像。但是现在,我想显示图像的缩略图和图像名称,以便用户在打开图像之前了解图像。那么,简单的方法是什么。

最佳答案

在显示 UITableView 之前,您应该调整(拇指)原始 UIImage 的大小,并将它们保存在您的应用程序缓存文件夹中。

类似这样的事情(在我的脑海中)

CGSize targetSize = (CGSize){ 100, 80 };
UIGraphicsBeginImageContext(targetSize);

CGRect thumbnailRect = (CGRect){ 0, 0, targetSize.width, targetSize.height };

[sourceImage drawInRect:thumbnailRect];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

// After this you should store the UIImage (NSData) as a file, so you could use it later on.

关于iphone - ios dropbox,在表格 View 中加载图像的缩略图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9278422/

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