Thank you.
I did use Capture, and then saved the file to FileSystemStorage while saving that path to my db so I can retrieve it later to know the paths of all images that were captured by the camera.
The odd part is that the code runs fine the first time it's called. However, when I capture a 2nd image using the camera, calling the same code to store the file in FileSystemStorage, the image seems to somehow get lost somewhere. Is there something that changes in iOS related to file:// vs file:///.
I noticed that when the image path is returned from:
(String) evt.getSource();
there is a different amount of "/" than when calling Are there supposed to be a fixed number of /'s in the path? Why would the getAppHomePath() return a slightly altered path from the one obtained by evt.getSource()?
Display.getInstance().getAppHomePath();
Could this be the issue? Why would it only manifest the 2nd time the Capture API is called? Is there a better way to handle images?
Thank you again.