Hello PowerApps Community!
Working on building my first PowerApp (I’m a non-programmer). I’ve hit a wall and am hoping to get some guidance…
My collection: I’ve got a collection that includes images I’ve taken inside PowerApps (with the camera feature).
My goal is to get my collection data (including photos) to appear in an .HTML (that will then be converted in Flow to a PDF - NOTE: I've got that part ok).
My progress: I used Shane Young’s awesome solution https://www.youtube.com/watch?v=bfXV_GXc_JM (25 minutes, 17 seconds) – and poof – I have everything I need except the photos.
My issue: I can’t get the collection camera photos to into appear…(I know they need to converted – but I'm not sure how to best do this).
For my situation:
Anyways…Any guidance would be much appreciated.
I really appreciate the training and guidance put out by superusers – and appreciate this community. Here’s a few links that could be potential solutions.
Here’s my code:
"<!DOCTYPE html>
<html>
<body>
<center>
<h2>Additional Information and Data</h2>
<table style='width:100%'>
<tr>
<td><b>Name</b></td>
<td><b>Details</b></td>
<td><b>Tab</b></td>
</tr>"
& Concat(CameraPhotos2, "<tr><td>" & Name & "</td><td>" & Detailss & "</td><td>" & Tab & "</td></tr>")
&
"
</table>
</body>
</HTML>
"
Solved! Go to Solution.
For those who are still working on generating a signature with Flow and Powerapps I created a video that should help.
Hi,
I've been dealing with the same problem recently.
I followed this tutorial that explains how to display attachments in a gallery (it can be images for example) https://www.youtube.com/watch?v=e32WHs53HLo .
Then, when I got the same result, I wrote in my HTML code in PowerApps :
<img src='" & GalleryDisplayingPictures.Selected.AbsoluteUri & "'>
That's all ! Not perfect because you need to select the gallery's item first, but it's working.
Concatenate("<img src=",Concatenate(Substitute(Picture," ","%20"),"?web=1"),"width=260"," height=270",">")
User | Count |
---|---|
175 | |
111 | |
86 | |
44 | |
42 |
User | Count |
---|---|
229 | |
118 | |
116 | |
74 | |
66 |