12-23-2010 01:32 PM
Well basically what I am doing is reading a bunch of images from an archive.
var data:ByteArray = zipFile.getInput(entry); previewLoader.loadBytes(data); ... bitmap = Bitmap(imageLoader.content);
12-23-2010 01:34 PM
12-23-2010 02:17 PM
Currently the archive is 9MB and I am loading a bitmap of every picture to display thumbnails (I do realise I should create actual thumbnails instead, I just didn't figure out how to do this yet).