I am using Apache httpclient to call a REST web service. This service returns image in base64 format. I want to convert this to image in png format but I don't want to save this image file. Reason being there are more than 10000 users and if I keep saving all the images, it would consume a lot of memory.
I am using JDK 1.7
Is it possible to achieve this ?