I am creating an 'about' page in my first test PowerApp, with an HTML control containing text about the app including images within the text.
I can include img src tags that point to an image hosted on an external site, however, I want to include image(s) packaged with the app.
I have tried putting an image control on the page which uses an image from the media section. I then created a text control whose 'Text' value I set to the image.
This returns :
ms-appdata:///local/Resources/Assets/Images/coffee.png
so I put that in my HTML control eg
"This is the <b>PowerApp</b> '<i>Test</i>'<br><br>Image from external site : <br> <img src=""http://www.photos-public-domain.com/wp-content/uploads/2016/11/green-grass-and-blue-sky-landscape-600x450.jpg""><br><br>Image from Media : <br><img src=""ms-appdata:///local/Resources/Assets/Images/coffee.png"">"
The external image displays ok, but there is nothing showing for the Image from Media.
I tried removing 'ms-appdata' (///local/Resources/Assets/Images/coffee.png) and that now shows me what I believe to be the default placeholder icon for 'image not found'
Clearly the HTML control is ok with displaying images via the img tag, but is there a problem pointing to images from within the app itself?
A work around would be to have multiple HTML controls, before and after an image control, but this is less flexible and harder to maintain.
Thanks.