I have number of images and i want to store it in sqllite3
database in xcode
. But when I convert it into blob format it is showing a large string to store in database. Please tell me how can I solve this issue and also suggest me the code for that particular method. The Code i used is
image = [info objectForKey:UIImagePickerControllerEditedImage];
[image_border setImage:image];
imgdata1 = UIImageJPEGRepresentation(image, 1.0f);
NSLog(@"%@",imgdata1);
Anyway to compress it.