Hello, I am working on an app, where the user must be able to choose a .PNG image, with transparency, and be able to use it as a logo within the app.
The problem is that on ANDROID, on the tablet, when using the "GetChoosenImage()" function I select a .png on the tablet but it loads it without transparency.
I would like to know if there is any option that from the APP on Android, I can read a file in a specific directory.
In Windows I could read a file such as eg. "C:\appruleta\logo.PNG" and so you could load a specific file.
But in android, I can't find a way to upload an image file or a file in an absolute directory.
If only I could do something like:
img_logo = loadimage("internal_memory_root\personal_logos\logo.png")
or
logo_file$ = "internal_memory_root\personal_logos\logo.png"
img_logo = loadimage(logo_file$)
Anyway, I can't make the user choose an image that they create, and use it within the APP on ANDROID.