Open
Description
From my understanding, the following code should create a pyramidal tiff that goes from the lowest resolution (highest level) to the highest resolution (lowest level). So in other words if it is possible to see a svs file in a magnification of 0X to 20X, the magnification of the tiff files should be seen in that range?:
import pyvips
image = pyvips.Image.new_from_file("file.svs",level=3)
image.write_to_file("file.tif", pyramid=True, tile=True, compression="jpeg")
But when I do this it does not go until 20X. Is there something I am missing or not understanding?