I am working on an app where I have to download images from internet and display them inside the app, I am using Universal Image Loader so far, but recently I ran into an issue where the app would not display the images which are huge in size for example 700 x 7661, I have read several posts & answers related to it but nothing seems to be a reliable solution, it appears in an hardware accelerated app the image size is limited by the OpenGL texture size limit, answers here on Stackoverflow suggest resizing the image to smaller size. I know disabling hardware acceleration fixes it, but that is not an option because it makes the whole app jittery.
My question is how can we achieve that accurately because devices have different OpenGL texture limit, some devices support 2048 x 2048 and some support 4096 x 4096, some of them support even smaller, if we resize the image by considering the smallest size the image will appear blurred on high resolution devices, so I am sort of out of clues as how to approach this issue, I have tried Picasso, Fresco & Glide and all of them have similar issue.
A sample of the image I am trying to load is https://i.stack.imgur.com/85JXK.jpg
Regards