produce an array from selected image in a spatialdata zarr store
R array dimensions nx x ny x 3 suitable for use with EBImage
# \donttest{
if (dir.exists("lungdata.zarr")) {
nn = rast_zarr("lungdata.zarr")
if (requireNamespace("EBImage")) {
ii = EBImage::Image(nn, colormode="Color")
EBImage::display(ii) # to browser for zoom/pan
} else message("Install EBImage to run this code.")
}
# }