Possible Duplicate:
how to store thumbnail image to sqlite table using core data in iphone?
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{
// Check if it's a photo or video and create MediaItem accordingly
if([[info valueForKey:@"UIImagePickerControllerMediaType"] isEqualToString:(NSString *)kUTTypeImage]){
NSLog(@"Image");
PhotoItem *photo = [NSEntityDescription insertNewObjectForEntityForName:@"PhotoItem" inManagedObjectContext:context];
[photo setImage:[info valueForKey:@"UIImagePickerControllerOriginalImage"]];
currentItem = [photo retain];
// listcell=[NSEntityDescription insertNewObjectForEntityForName:@"BucketListItem" inManagedObjectContext:context];
// [listcell setItemText:@"Photo"];
nameAlert = [[UIAlertView alloc] initWithTitle:@"Enter Photo Name" message:@" " delegate:self cancelButtonTitle:@"Done" otherButtonTitles:nil];
/*CGAffineTransform transform = CGAffineTransformMakeTranslation(0, 150);
[nameAlert setTransform:transform];*/
nameField = [[UITextField alloc] initWithFrame:CGRectMake(20, 50, 245, 20)];
nameField.backgroundColor = [UIColor whiteColor];
nameField.autocapitalizationType = UITextAutocapitalizationTypeWords;
nameField.delegate = self;
[nameAlert addSubview:nameField];
[nameAlert show];
[nameAlert release];
}
I am using above code to store image from photo gallery.i need to store thumbnail to database.how to do that?