how to convert bitmap to uri in android?
There is no built-in method to convert a bitmap to a URI in Android. However, there are a few workarounds that you can use. One approach is to save the bitmap to a temporary file and then call the Uri.fromFile() method to convert the file to a URI. This approach is illustrated in the following …