简体   繁体   中英

Android - Image processing library for simple resize/create operations with highres images

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM