Base64 Encoded images on Android/iOS -


I am exploring a way to obscure images in my application and currently considering Base46 encoding.

I want something with at least overhead or if possible to promote performance on standard files on the file system.

No base 64 encoding imaging (PNG) and later

thanks

I'm (decoding?) Sure that you understand that Base 64 will not actually fool anyone to get your bitmap.

John Skeet is correct, the binary data in Bin 64 readable format is nominally liked, but in fact it will not help you here. A XOR will accelerate against your password, and will not add overhead to any size.

If you really want to obscure your bitmap, then I will be able to keep you the " raw " ressources folder "by doing this, you will be able to keep good Android abstractions that are different form factors (LDPE, HDPI, ...). R.raw.filename increases the ImageView class to work directly with the ID and the reading file / decoding Stream / bitmap is there, by doing so, if necessary If you have standard ways of doing things can easily rollback.

Comments