Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9031513
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T07:45:02+00:00 2026-06-16T07:45:02+00:00

I have converted the UIImageview into NSData and stored it as binary data. but

  • 0

I have converted the UIImageview into NSData and stored it as binary data. but i don’t know how to retrieve the binary data to NSData and convert that to UIImageview

my code is below

image save as binary data—-

-(void) save
{
    UIImage *img = [UIImage imageNamed:@"back2.png"];
    NSData *dataObj =UIImagePNGRepresentation(img);
    NotesDetails *notesDetails = (NotesDetails *) [NSEntityDescription insertNewObjectForEntityForName:@"NotesDetails" inManagedObjectContext:managedObjectContext];
 notesDetails.imageData=dataObj;
    NSLog(@"NotesDetails: %@",notesDetails);
    NSError *error;
    if (![managedObjectContext save:&error])
    {

    }
}

Image Retreive——

-(void)viewDidLoad
{
    NSFetchRequest *fectchreq = [[NSFetchRequest alloc] init];
    NSEntityDescription *entitydes = [NSEntityDescription entityForName:@"NotesDetails"
                                                 inManagedObjectContext:self.managedObjectContext];
    [fectchreq setEntity:entitydes];
    NSSortDescriptor *sortdes = [[NSSortDescriptor alloc] initWithKey:@"notesTime" ascending:YES];
    NSArray *sortdesarray = [[NSArray alloc] initWithObjects:sortdes, nil];
    [fectchreq setSortDescriptors:sortdesarray];
    NSError *error;
    NSMutableArray *storeddata = [[self.managedObjectContext executeFetchRequest:fectchreq error:&error] mutableCopy];

    if ([storeddata count] > 0)
    {
        for (NotesDetails *sc in storeddata)
        {
            imgFromDb=[NSData dataWithData:[@"%@",sc.imageData]];
        }
    }
    NSLog(@"Image : %@",imgFromDb);
    UIImageView *dbImage=[[UIImageView alloc]initWithFrame:CGRectMake(80,20,90,90)];
    dbImage.image=[UIImage imageWithData:imgFromDb];

    [NoteDetails addSubview:dbImage];
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T07:45:03+00:00Added an answer on June 16, 2026 at 7:45 am

    You can use NSKeyedUnarchiver:

    imgFromDb= [NSKeyedUnarchiver unarchiveObjectWithData: sc.imageData];
    

    And you can do the opposite (object to data) with NSKeyedArchiver if you prefer it vs UIImagePNGRepresentation().
    And there are other ways to do this, for example:

    imgFromDb= [UIImage imageWithData: sc.imageData];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using explode i have converted the string into array , But the array look
I have to convert a DICOM image into any supportable format for UIImageView such
I have implemented a rotation gesture for UIImageView . Here is the Code that
Is there a code to convert this? I have hex format of fingerprint data.
I have converted an array to object data like this: <?php $myobject->data = (object)Array('zero','one','two');
I have converted .jpg images into a bitmap thumbnail. What I am trying to
I have converted ILColorPicker to work on XCode4 and Storyboard. My problem is that
I have a 3rd party JAR that I have converted to an OSGI bundle
I have successfully converted UIImage in to NSData and sending it to a server
I have array of image url. I want to show the images into UIImageView.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.