B4A Question How to save an image to Gallery? - Riddle Ling    Aug 3, 2017 How to save an image to Gallery?
My code:
Dim Out As OutputStream
Out = File.OpenOutput(File.DirRootExternal, "Test.jpg", False)
bitmap.WriteToStream(Out, 100, "JPEG")
Out.Close
But did not appear in the Gallery app.... B4A Question Save image to gallery - targetSdkVersion=30 - Erel (first post)    Sep 6, 2020   (2 reactions) https://www.b4x.com/android/forum/threads/add-image-to-gallery-android-5-10.121992/... B4A Question How to save the image in the gallery after download - Thiago Alves de Farias (first post)    Feb 1, 2021 Obrigado! Thanks!... B4i Question Problem on download image and save to gallery - Ramezanpour (first post)    Apr 12, 2015 Resolved
I do not know how? But I tried again and I was resolved... B4i Question How can I save the photo bitmaps I generate to the Gallery - Erel (first post)    Mar 2, 2017   (1 reaction) Starting from iOS 10 you should add a usage description:
#PlistExtra: <key>NSPhotoLibraryUsageDescription</key><string>This app needs access to photos.</string>
... B4A Question Save an image from the smartphone gallery in the database and upload it to a listview. - OliverA (first post)    Sep 28, 2018 selectedImage As Bitmap = TempBitmap
selectedImage=CreateScaledBitmap(selectedImage,1920,1080)
to
Dim selectedImage As B4XBitmap = TempBitmap
selectedImage.Resize(1920,1080,True)
Finally, maybe... B4A Question Gallery requester? - Spright    Feb 4, 2023 How save image using the gallery requester and typing a name?
There are lots of examples in the forum that saves an image to the gallery and there are examples that saves textfiles using the virtual keyboard
but not the combination; saving an image using the virutal keyboard into the gallery?
I have an image and i want the user to specify the name into the gallery before saving.
How do you get... B4A Question Show image in Gallery (Android 7.0) - GGSoft    Sep 27, 2018 "), "prueba.jpg", False) bitmap.WriteToStream(Out, 100, "JPEG") Out.Close ' "Broadcast" image to gallery Dim Phone As Phone If Phone.SdkVersion < 19 Then...After searching in the forum, I tried this code: ' The image Dim bitmap As Bitmap = LoadBitmap(File.DirAssets, "prueba.jpg") ' Copy to ...files/pruebas/prueba.jpg Dim Out....Combine(r.GetSafeDirDefaultExternal("pruebas"), "prueba.jpg")) 'files to scan... B4A Code Snippet Add image to Gallery Android 5 - 10+ - stevenindon (first post)    Feb 10, 2021 Erel,
I would like to save my bitmap to Gallery Folder by calling :
AddBitmapToGallery(File.OpenInput(File.DirAssets, "logo.png"), "logo.png", "image/png")
but i have the image in Bitmap variable already. How can i convert my bitmap to Inputstream?
*I dont want to save then reopen again... B4A Question How to save images in my Phone Galary - mangojack (first post)    Jun 11, 2019 https://www.b4x.com/android/forum/pages/results/?query=save+image+to+gallery also see this https://www.b4x.com/android/forum/threads/show-image-in-gallery-android-7-0.97662/#post-615939... Page: 1   2   3   4   5   6   7   |