Possible Duplicate:
How to retriving base64 strings(large image) from server to android
i tried with base64 string format but i am success with transfering small size images but the size more than 3000*3000 dimension returns null while getting response from the server, Waiting for some good result from you guys ... to see coding pls refer How to retriving base64 strings(large image) from server to android
androidHttpTransport.call(SOAP_ACTION, envelope);
SoapPrimitive result = (SoapPrimitive)envelope.getResponse();
it returns null for large size image
You may try downloading the image directly (without Base64) from source on the web as below:
URL url = new URL("your_url_to_the_image");
URLConnection ucon = url.openConnection();
InputStream is = ucon.getInputStream();
And now save the InputStream to a File
in cache on SD card. Afterwards refer to the saved file to load image.
For more info, read this.