I had the same problem, and I realized that the plug-in returns the source with the protocol for new captures to the iOS camera, but when using it in your HTML to set the source of an element like img or video, you need to delete the protocol ... So I did:
if (isIos()) { itemSrc = itemSrc.replace(/^file:\/\//, ''); }
If you want to move the capture to another location, restore the protocol or make a copy in advance or something else
Hope this helps
source share