base64 encoding

iPhone Development: Convert image into base64 string

Need to post image to server from your iPhone app, and your server guy who wrote down the PHP script asked you to send image as base64 String.In iPhone we can convert an image to base64 string using below pesudocode -(NSString *)Base64Encode:(NSData *)data {     //Point to start of the data and set buffer sizes

iPhone Development: Convert image into base64 string Read More »