-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
Milestone
Description
Fantastic library--thanks for creating/maintaining!
I'm using it to resize some very large TIFs (> 1.5-2 billion pixels) and running into the input size limit. I'm able to use limitInputPixels() to increase the pixel limit, but the highest value that works for me is 2^32 - 1 = 2147483647. My undersatnding is that this is because on the C++ side, the limit is read as a 32-bit integer here. How feasible would it be to allow a larger value here?