I’d like to suggest rotating the map. That sounds safest.
Although I will admit to an undocumented hack that may be helpful… although I’m not sure if it will survive in future QuPath updates.
Anyhow, if you put your images in a project then you can open the project.qpproj file in a text editor and add a secret metadata value “rotate180”. The result should look something like this:
{
"images":[
{
"path”:”/path/to/image",
"name”:”name.ext",
"metadata":{
"rotate180":"true",
}
}
]
}
Now if you reopen the project, images with this metadata value set should be opened in a rotated way. Note that it only works for 180 degrees... no other rotations are supported. Also, if you have opened the image previously then you would need to restart QuPath to ensure that the rotation is applied - since otherwise unrotated tiles may be cached and displayed.
Because the value is only stored in the project file (not the data file), it is necessary to open the image via the project every time for the rotation to happen.
I’m not sure how common this issue is, but if it turns out to occur often then I guess a more elegant solution may be needed one day...