I'm looking for the best way to download an array of Bitmaps, modify them a bit and then save to the SD card.
I've heard that ByteArrayOutputStream
is a bad idea to use because it loads the image into the RAM of the device. Instead I'm probably supposed to use something like a BufferedInputStream
and FileOutputStream
, however I don't know how I can alter the Bitmaps before saving them using this method.
Thanks