我的 Dropbox 中有图片,需要在 Uitable 视图中显示。我可以使用元数据文件元数据按名称显示图片,当我单击任何单元格时,我可以通过调用 loadthumbnail 成功地在图像视图中查看图像。但是现在,我想显示图像的缩略图以及图像名称,以便用户在打开图像之前了解图像。那么,简单的方法是什么。
问问题
1320 次
2 回答
2
UIImage
您应该在显示之前调整(拇指)原始的大小UITableView
并将它们保存在您的应用程序缓存文件夹中。
像这样的东西(在我的脑海中)
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.
于 2012-02-14T14:52:29.143 回答
0
尝试转到“开始”菜单,然后查找“我的文档”并查找名为“下载”的文件夹。这对我看不到的下载有用。
祝你好运!
于 2019-12-26T19:24:21.073 回答