Path to Samsung Galaxy S9 img | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Path to Samsung Galaxy S9 img

Coding in html, how can I insert a locally saved image. <img src="/storage/emulated/0/WhatsApp/Media/WhatsAppImages/IMGname.jpg"> as copied from a file manager doesn't work. What's the correct reference? Thx 4 your help. PS: the APP has access to the mobiles storage

8th Apr 2020, 12:28 PM
Gerhard Stummvoll
Gerhard Stummvoll - avatar
2 Answers
+ 5
for local files start the url with file:// Note: only you can view these pictures as they are stored on your device. Use an image host if you want others to be able to check it too. <img src='file:///storage/emulated/0/WhatsApp/Media/pic.jpg'>
8th Apr 2020, 2:20 PM
Lord Krishna
Lord Krishna - avatar
0
Thank you very much for your reply. Now it works perfectly.
8th Apr 2020, 6:27 PM
Gerhard Stummvoll
Gerhard Stummvoll - avatar