You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an RGB tif image of size of 107375 x 85902 x 1. There are other images as well in around 100K X 100K. For these images, I am getting this following exception:
Is there any limit on the size of the file that the library can load? Looks like its trying to load the image into an int byte array which can only support the images up to (w*h <= Integer.MAX_SIZE). I understand there's a way to get small boxes that can fit into memory and then join them for the export. I wanted to check if there's such support from the library itself.
I have an RGB tif image of size of 107375 x 85902 x 1. There are other images as well in around 100K X 100K. For these images, I am getting this following exception:
Is there any limit on the size of the file that the library can load? Looks like its trying to load the image into an int byte array which can only support the images up to (w*h <= Integer.MAX_SIZE). I understand there's a way to get small boxes that can fit into memory and then join them for the export. I wanted to check if there's such support from the library itself.
The text was updated successfully, but these errors were encountered: