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
From my current understanding, while calling one of these methods to save an image, the current thread hangs instead of doing someting useful while an image is being saved. Would it be possible to introduce async overloads of these methods?
The text was updated successfully, but these errors were encountered:
Indeed, the WriteTo{File,Buffer,Target,Stream} and *save{Buffer,Target,Stream} operations are currently missing async overloads. As for the implementation of this, I think it only makes sense to use async for operations that will trigger a pixel loop, since most NetVips operations are instant.
Let's tag this as an enhancement. Very happy to accept a PR, if you're able.
From my current understanding, while calling one of these methods to save an image, the current thread hangs instead of doing someting useful while an image is being saved. Would it be possible to introduce async overloads of these methods?
The text was updated successfully, but these errors were encountered: