Dataview : path to an image stored on iCloud?

Just an alternative to @anon63144152 solution.
You can use in frontmatter

---
Cover: "[[TomatoSalad.jpeg]]"
---

and use the function embed() in table query

embed(Cover) AS COVER

If you want to control the size:

embed(link(Cover, "150")) AS COVER
1 Like