如何将图像保存到sqlite3数据库?
我有一组 UIImages,如何将它们保存在 sqlite3 数据库中?
I have an array of UIImages, how to I save them in sqlite3 database ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有一组 UIImages,如何将它们保存在 sqlite3 数据库中?
I have an array of UIImages, how to I save them in sqlite3 database ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
@Veer,如何将它们保存到
Sqlite 数据库
取决于您,正如 Parth 告诉您的那样,在您有两个选项之前请查看下面的将图像作为 BLOB 在数据库中保存数据类型。
将图像名称以字符串数据类型保存在数据库中。
现在你有两个选项......并且当你询问你有
UIImages
数组,并且你想将它们保存在sqlite3数据库中那么我建议你选择第二个并将图像名称通过 (,) 分隔
保存在同一字段中并获取它们因此。
希望你明白我的意思......祝你好运!
@Veer it is upto you you that how you want to save them to the
Sqlite database
as Parth told you before you have two options have a look on them belowSaving images in the database as BLOB datatype.
Saving images name in the database as String datatype.
Now you have both the options with you........and as you are asking about that you have array of
UIImages
,and you want to save them in sqlite3 database then i suggest you to choose second one and save theimages name by separation of (,)
in same field and fetch themaccordingly.
Hope you got my point....Good Luck!
要将图像保存到 Sqlite 数据库中,有两个选项:
第一个选项
您可以将图像放在 Resources 文件夹中,或者可能是应用程序的文档目录中,然后将图像名称保存为 Sqlite 中的 TEXT 数据类型。
第二个选项
您可以将图像转换为 NSData 格式并将其保存为 Sqlite 中的 BLOB 数据类型。
因此,如果图像数量较多,第一个选项更可行。
希望这对您有帮助。
For saving images into Sqlite database, there are two options:
FIRST OPTION
You can put your images in Resources folder or may be app's Documents Directory and just save the image names as TEXT datatype in Sqlite.
SECOND OPTION
You can convert your images to NSData format and save it as BLOB datatype in Sqlite.
As such, First option is more feasible, if number of images is more.
Hope this helps you.