Open
Description
Dear Professor Sir
I am using this package in python, I am trying to get the whole image as a pyramidal tiff image Using the following code that you kindly suggested in the other issues section, I realized that it created a tiff from the highest resolution rather the svs as a whole.
import pyvips
image = pyvips.Image.new_from_file(r"file")
image.write_to_file(r"file, pyramid=True, tile=True, compression="jpeg")
Is there anything that can create the whole tiff from the least amount of pixels to the most amount of pixels, as a whole. IE level 3 then zoom to level 2 and zoom to level 1 and then highest resolution.
Thank you kindly sir,
--Nishant