Is there anyway to retrieve an image based on their unique image identifier set by the photo app on IOS?
Hi. This is almost certainly metadata. Some digging around seems to back this up.
By “retrieve” do you mean do the whole end-to-end process, searching for the file and then loading it? Or just picking the file out of a list?
The third library I mention here has metadata support (e.g. see this and this). In fact I’m attempting to fix up some of that now with respect to GIF animations. If this might suit your needs and you’d like to give it a try, let me know.
I believe when an image is created on IOS device and saved to photo app a default identifier is given like this “EA5DD760-3B0E-40B3-8E05-A3693EC43488/L0/001”. It probably is part of the metadata if I had to guess. Using Xcode and objective C this identifier is used to display the image asset.
I am using a third party app with URL scheme to get the image that is captured with the third party app. The response is a image identifier instead of an image name. I can’t find a way to pull up the image in lua with this identifier. It seems to be specific to objective-C.
Hi. This is almost certainly metadata. Some digging around seems to back this up.
By “retrieve” do you mean do the whole end-to-end process, searching for the file and then loading it? Or just picking the file out of a list?
The third library I mention here has metadata support (e.g. see this and this). In fact I’m attempting to fix up some of that now with respect to GIF animations. If this might suit your needs and you’d like to give it a try, let me know.
I believe when an image is created on IOS device and saved to photo app a default identifier is given like this “EA5DD760-3B0E-40B3-8E05-A3693EC43488/L0/001”. It probably is part of the metadata if I had to guess. Using Xcode and objective C this identifier is used to display the image asset.
I am using a third party app with URL scheme to get the image that is captured with the third party app. The response is a image identifier instead of an image name. I can’t find a way to pull up the image in lua with this identifier. It seems to be specific to objective-C.