English 中文(简体)
Json和图像
原标题:Json and images

我在服务器上开一个灯塔,希望获得一些数据。 我使用TonJson和所有东西都做得当,但我说,没有什么问题。 我不知道如何下载图像。 当我试图建造和操作 app子时, just子刚刚坠毁。 是否有任何想法要做?

最佳回答

如果您的JSON请求为图像提供URL,那么就试图:

NSString *path = @"http://sstatic.net/so/img/logo.png";
NSURL *url = [NSURL URLWithString:path];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *image = [UIImage imageWithData:data];
问题回答

凯文已经为静态图像提供了解决办法,但是如果你想要传播动态生成的图像,你可以使用同样的方法获得数据:URL。

你们不得不在基地64(服务器上)树立你的形象,然后在客户身上打上你才刚刚必须制作的图像

<img src=”data:image/png;base64,the_base64_string_here”>

(如果使用超文本5)或

UIImage *image = [UIImagemapWithData:[NSData dataWithContentsOfURL:@”data:image/png;base64,the_base64_string_here](如果写上本地法典)。

当你从 d获得图像时,你只能使用<代码>。 UIImage s-imageWithContentsOfFile:





相关问题
Export tables from SQL Server to be imported to Oracle 10g

I m trying to export some tables from SQL Server 2005 and then create those tables and populate them in Oracle. I have about 10 tables, varying from 4 columns up to 25. I m not using any constraints/...

SQL server: Can NT accounts be mapped to SQL server accounts

In our database we have an SQL server account that has the correct roles to access some of the databases. We are now switching to windows authentication and I was wondering if we can create a NT user ...

SQL Server 2000, ADO 2.8, VB6

How to determine if a Transaction is active i.e. before issuing Begin Transaction I want to ensure that no previous transaction are open.. the platform is VB6, MS-SQL Server 2000 and ADO 2.8

热门标签