IOS UIImage Turn NSString

Source: Internet
Author: User

There may be a requirement in the project, which will generally be converted to NSString when uploading the server.

So the question is, how does the picture turn to NSString, the picture that has been converted to nsstring and then turned into a picture

In fact, it's very simple, just give us two ways OK

Picture to String-(NSString *) Uiimagetobase64str: (UIImage *) image{    NSData *data = uiimagejpegrepresentation (image, 1.0f);    nsstring *encodedimagestr = [data base64encodedstringwithoptions:nsdatabase64encoding64characterlinelength];    return ENCODEDIMAGESTR;}

string to Picture-(UIImage *) Base64strtouiimage: (NSString *) _encodedimagestr{    nsdata *_decodedimagedata   = [[NSData] Alloc] initwithbase64encoding:_encodedimagestr];    UIImage *_decodedimage      = [UIImage imagewithdata:_decodedimagedata];    return _decodedimage;}

OK, everybody, you can test it.


Test demo upload to the group space, welcome to download.

UIImage and Base64 cross-transfer. zip

Apple Development Group: 414319235 Welcome to join the Welcome discussion question

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

IOS UIImage Turn NSString

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.