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
If you'd like to use other resolution than the provided biggestSize() and smallestSize() you can't or at least it's not documented. I'd like to do some JNI image processing and for that I need to find a sweet spot between the max and min resolutin.
The text was updated successfully, but these errors were encountered:
biggsetSize() and smallestSize() are actually returning an implementation of SelectorFunction. That is the interface which provides you with a list of available items (sizes in this case) and asks you to pick one of them.
SelectorFunction is public, so you can just provide your own implementation where you would normally call biggestSize().
If you'd like to use other resolution than the provided
biggestSize()
andsmallestSize()
you can't or at least it's not documented. I'd like to do some JNI image processing and for that I need to find a sweet spot between the max and min resolutin.The text was updated successfully, but these errors were encountered: