I am looking for a way to realize the following operations on Android:
- simple resize to high resolutions
- simple crop with high resolution output
With high resolution i mean things like 8MP and above. It’s clear that those images cannot be loaded into memory because of the low memory. But are there libraries available that do these kind of things in a more memory friendly way (like doing it tile based or something this)?.
I’m not avare of libraries working this way, but you can overcome memory allocation problems
by using mmapped bufers – they are outside of heap and just plain buffers. You shoild be able to use whatever library you like provided it will work with byte buffers provided by you