Closed
Description
Is your feature request related to a problem? Please describe
I have a project that works with very large tif images. I need to keep the large image in memory for later processing, but I also need smaller versions for on-screen rendering. Currently to do this I need to duplicate the large image (doubling the memory usage) and then resize it to the smaller size.
Describe the solution you'd like
Would like the ability to directly create a resized copy of a source image (or part thereof)
Describe alternatives you've considered
As mentioned above, the current solution is to create copy of full image and then downsize it - but this requires more memory than directly resizing to a smaller image.
(Perhaps there's already a way to do this but if so, I couldn't figure out how)
Additional context
No response