如何在 iPhone 应用程序中从 sqlite 数据库检索图像
在我的 iPhone 应用程序中,我想从“BLOB”数据字段中的(存储在)sqlite 数据库表中检索图像。
为此,我使用代码将图像存储在 NSData 中
NSData *imageData = UIImagePNGRepresentation(image);
,并且我还可以从 NSData 检索图像 -> UIImage 通过代码
self.img1=[UIImage imageWithData:imageData];
并将图像显示到 imageView 中,
imageView2.image=img1;
我成功地将图像(以 NSData 形式)存储到 sqlite 数据库表列(BLOB 数据类型)中。
我使用下面的代码从 NSLOG 中的数据库检索图像
NSData *imageData2 = [[arraySelect objectAtIndex:0] valueForKey:@"image_column"];
NSLog(@"imagedata2 in retrive :: %@",imageData2);
我得到存储在数据库列中的相同数据(以 blob 数据类型“NSData 形式”)
现在我通过以下方式检索图像 (在调试时它崩溃并显示 meaasge EXE_BAD_ACCESS)
self.img3=[UIImage imageWithData:imageData2];
imageview3.image=img3;
但我没有在 imageView 中获取该图像。 我检查了所有商店,但都还好。
所以请帮助并建议我应该做什么来从数据库中获取 imageView 中的图像。
谢谢。
In my iPhone App I want to retrieve image from (stored in ) sqlite database table in "BLOB" datafield.
For that I am storing my image in NSData using code
NSData *imageData = UIImagePNGRepresentation(image);
and I am also able to retrieve image from NSData -> UIImage by code
self.img1=[UIImage imageWithData:imageData];
And displaying Image into imageView by
imageView2.image=img1;
I am storing image (in NSData form) into sqlite database table column (of BLOB Datatype) successfully.
I am using below code to retrieve image from database
NSData *imageData2 = [[arraySelect objectAtIndex:0] valueForKey:@"image_column"];
NSLog(@"imagedata2 in retrive :: %@",imageData2);
in NSLOG i am getting the same data stored in database column (in blob datatype "NSData form" )
Now I am retrieving image by
(while debugging it crashes here and showing meaasge EXE_BAD_ACCESS)
self.img3=[UIImage imageWithData:imageData2];
imageview3.image=img3;
But I am not getting that image in imageView.
I checked all outlets but they are ok.
So please Help and Suggest what I should do to get image in imageView from database.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@Prerak我认为这会对你有所帮助......并解决你的问题
http:// dblog.com.au/iphone-development-tutorials/iphone-sdk-tutorial-reading-data-from-a-sqlite-database/
@Prerak i think this will help you something..and solve your problem
http://dblog.com.au/iphone-development-tutorials/iphone-sdk-tutorial-reading-data-from-a-sqlite-database/