0
votes
1answer
71 views

iOS loading Base 64 encoded data in webview

I am trying to load base64 encoded data in a webview.Following is the code i am using NSDictionary *fileFormatDic=[[NSDictionary ...
0
votes
1answer
162 views

How to minimize the length of the base64 string from nsdata of image?

I convert an image to NSData and NSData to base64string using NSData *imagedata = UIImageJPEGRepresentation(imageView.image, 0.1f); NSString *c = [NSString base64StringFromData:imagedata]; the fn ...
0
votes
0answers
57 views

Convert a variable length (< 16 bytes) NSData to an NSNumber

I have a web service which is sending down data encoded in a JSON format. Some of this data is RFC 4122 UUIDs, which are 16 bytes. I had originally encoded them as plain decimal numbers. This worked ...
2
votes
2answers
210 views

decoding a HUGE NSString, running out of memory

I'm looking for ideas on how to improve a process of decoding a 40+MB NSString with base64 encoding and saving it to a file while being able to fit the process into iPad 1's 256 MB of RAM I get the ...
0
votes
0answers
89 views

Decode data from Base64 and represent it in hex format

//input Data in base64 format NSData *SB64Data = [[NSData alloc]initWithData:[SHashArray objectAtIndex:0]]; //Decode The string from Base64 //Represent in hexademical format(also in nsstring) ...
0
votes
0answers
356 views

Objective-C download image from PHP/MySQL Blob into NSData object?

I have a MySQL database with a bunch of images stored as blobs. I can have a PHP script allow download of the images with: $result=mysql_query($query); $image=mysql_result($result,0,"image"); echo ...
0
votes
0answers
130 views

Image file Base 64 Decode Darkened

When I decode a Base 64 encode image File the result is darkened. I don't understand why... anybody have an idea ? Thank you !! =)
0
votes
2answers
2k views

How to encode NSData as base64? (iPhone/iPad)

I'm trying to add a UIImage to an HTML email, however I'm having an issue. I have looked around at lots of other posts and they all state that I need to convert my NSData to base64, however the method ...
1
vote
2answers
408 views

Checking if an NSString contains base64 data

How can I check to see if an NSString contains base64 data in an if statement? Because base64 encodes the data in a completely random way, I can't search for a phrase within the NSString so instead I ...
0
votes
1answer
428 views

Convert a hex string into base64?

I'm trying to convert a hex string into base64 on iPhone. The hex is: 5289be07c5c7edcc18f3a02c7b81c110b8637f8b2ddbc29cdabcbd7e394c1695 But I cant's seem to get the base64 version of this, which is: ...
0
votes
0answers
207 views

Getting crash in Base64 encodeData on capturing image from camera and not scaling the image

On capturing an image from camera, and touching Use button without scaling the image, I get a crash in Base64 encodeData method. I don't get any crash on scaling in the image captured and then ...
0
votes
2answers
631 views

UIImage Base64 encoding fails

i'm trying to convert a UIImage which comes from the iPhones photo library to a base64 encoded string. My problem is that the output of the base64 encoded string does not match a base64 string which ...
2
votes
1answer
7k views

Creating a base-64 string from NSData

How is it possible to get a base64 string from an NSData instance?
0
votes
4answers
3k views

How to convert NSData into string in iPhone SDK?

I am developing an iPhone application in which camera image store in NSData through UIImageJPEGRepresentation now i want to convert this NSData into string. After goggling I found base64 will do this. ...
1
vote
1answer
954 views

Encoding/Decoding using NSData+Base64.h

I have some encrypted data that I'm converting to a base64. I am having difficulty converting that string back into NSData that I can then use for decryption. NSData *encryptedData = [self ...
0
votes
0answers
303 views

base64 some times can not decode image data getting from webserver

I am getting images encoded in base64 from a .NET program running on a web server, using XML parameters. I am able to download the encoded image data, but some of them get decoded to null. I am ...
6
votes
2answers
2k views

Base64 Encode File Using NSData Chunks

Update 4 Per Greg's suggestion I've created one pair of image/text that shows the output from a 37k image to base64 encoded, using 100k chunks. Since the file is only 37k it's safe to say the loop ...
0
votes
1answer
830 views

iPhone - encode Array of Data from CoreData Entity and store in Base64 String

I have a data model with three entities (Purchase, Items, Image) the purchase is the main with the other two as related attributes. I need to be able to send the data to a web server, and I must ...