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 7090147
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T08:00:37+00:00 2026-05-28T08:00:37+00:00

I want send an image from my App to web service, to do it,

  • 0

I want send an image from my App to web service, to do it, im send the data like an NSData, but it do nothing:

NSData *imagen= UIImagePNGRepresentation(windowImage);

The Web Service wait the data like: base64Binary

To send this type of data, i know that i need convert the NSData to NSString using the famous method “base64Encoding”

NSData *imagen=UIImagePNGRepresentation(windowImage);
NSString *encoded= [imagen base64Encoding];

And i Send the data like SOAP:

   NSString *soapMsg= [NSString stringWithFormat:............<imagenBase64>%@<imagenBase64>,encoded];

Where is the error? I need to do other conversion?

  • 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-05-28T08:00:38+00:00Added an answer on May 28, 2026 at 8:00 am

    See the following answers. Do like this.

    NSData *imagen=UIImagePNGRepresentation(windowImage);
    NSString *base64String = [self base64StringFromData:imagen length:[imagen length]];
    

    Now, send this base64string to your web service.

    static char base64EncodingTable[64] = {
        'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
        'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
        'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
        'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'
    };
    
    + (NSString *) base64StringFromData: (NSData *)data length: (int)length {
        unsigned long ixtext, lentext;
        long ctremaining;
        unsigned char input[3], output[4];
        short i, charsonline = 0, ctcopy;
        const unsigned char *raw;
        NSMutableString *result;
    
        lentext = [data length]; 
        if (lentext < 1)
            return @"";
        result = [NSMutableString stringWithCapacity: lentext];
        raw = [data bytes];
        ixtext = 0; 
    
        while (true) {
            ctremaining = lentext - ixtext;
            if (ctremaining <= 0) 
                break;        
            for (i = 0; i < 3; i++) { 
                unsigned long ix = ixtext + i;
                if (ix < lentext)
                    input[i] = raw[ix];
                else
                    input[i] = 0;
            }
            output[0] = (input[0] & 0xFC) >> 2;
            output[1] = ((input[0] & 0x03) << 4) | ((input[1] & 0xF0) >> 4);
            output[2] = ((input[1] & 0x0F) << 2) | ((input[2] & 0xC0) >> 6);
            output[3] = input[2] & 0x3F;
            ctcopy = 4;
            switch (ctremaining) {
                case 1: 
                    ctcopy = 2; 
                    break;
                case 2: 
                    ctcopy = 3; 
                    break;
            }
    
            for (i = 0; i < ctcopy; i++)
                [result appendString: [NSString stringWithFormat: @"%c", base64EncodingTable[output[i]]]];
    
            for (i = ctcopy; i < 4; i++)
                [result appendString: @"="];
    
            ixtext += 3;
            charsonline += 4;
    
            if ((length > 0) && (charsonline >= length))
                charsonline = 0;
        }     
        return result;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some image data (jpeg) I want to send from my iPhone app
I want to send image and text data from Android phone to a Server.
I want to send more than one image file from client to server for
I am developing a WinForms application and want to send a binary image data
I would like to capture an image from the camera on Android, and send
I want to send an image from one android device to one or multiple
I want to display an image from the web to a panel in another
I want to send image and text to iMessage from my own application in
I want to send an image to a web server running .Net which is
I can ping using console app, but I want to ping from ASP.NET, the

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.