gpt4 book ai didi

cappuccino - Cappuccino -将图像从磁盘加载到CPImageView

转载 作者:行者123 更新时间:2023-12-03 13:38:17 25 4
gpt4 key购买 nike

我正在寻找一种将磁盘上的图像加载到CPImageView中的方法。这可能吗?

最佳答案

要将图像上传到服务器,您可以使用普通的文件上传按钮,例如 FileUpload 实现的按钮。或者,如果您不担心跨浏览器可能存在的一些非常棘手的问题,则可以尝试使用我的 Deep Drop Upload 分支,该分支允许拖放上传。

无论哪种情况,一旦图像在您的服务器上,您都需要服务器返回可以查看图像的URL。假设此URL为http://example.com/uploads/image101.png。然后,您可以按CPImageView的常规方式显示它:

var imageView = [[CPImageView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
[imageView setImage:[[CPImage alloc] initWithContentsOfFile:"http://example.com/uploads/image101.png"]];

关于cappuccino - Cappuccino -将图像从磁盘加载到CPImageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9119123/

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