B4A Question Media Chooser - How to save image to gallery? - Erel (first post)    May 15, 2024   (1 reaction) https://www.b4x.com/android/forum/threads/add-image-to-gallery-android-5-10.121992/#content B4A Question How to save an image to Gallery? - Riddle Ling    Aug 03, 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 06, 2020   (2 reactions) https://www.b4x.com/android/forum/threads/add-image-to-gallery-android-5-10.121992/ B4A Question Gallery requester? - Spright    Feb 04, 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 ha B4A Question [solved] Take Screenshot - then save it in a dedicated dir in gallery - Mahares (first post)    Feb 13, 2021   (2 reactions) Hello good person:
The code in this below link in conjunction with the code for your screenshot can allow you to save the screenshot as an image to the Gallery or a subfolder of Gallery
https://www.b4x.com/android/forum/threads/add-image-to-gallery-android-5-10.121992/#content B4A Library Webview - Right click to save image - drgottjr    Nov 03, 2020   (6 reactions) Full-blown browsers enjoy a context menu, activated with a right click of the mouse. Among other tasks, you can select and download images appearing on the page.
Attached below you will find Contextual (.jar and .xml), a library which allows you to download and save images from a webview. Unzip t B4A Question Saving a Picture to the Gallery - ronell (first post)    Nov 17, 2018   (1 reaction) i tried the code. works without issue
Sub Activity_Create(FirstTime As Boolean)
Dim bmp As Bitmap
bmp = LoadBitmap(File.DirAssets,"user.jpg")
Dim Out As OutputStream
Out = File.OpenOutput(File.DirRootExternal, "user.jpg", False)
bmp.WriteToStream(Out, 100, "JPEG")
Out. B4A Question Read image from gallery and save in online server - spsp (first post)    Jan 20, 2024 Hi,
1) To read a picture from the gallery : https://www.b4x.-example-select-image-at-phone.109022/
2) copy the file in the app data folder
3) To upload to a server : https://www.b4x.-a-file-to-your-server-with-httpjob-and-php-included.116852/
spsp B4A Question How to save the image in the gallery after download - mangojack (first post)    Jan 31, 2021 Search Results for "save image to gallery" .... Top right hand corner.
https://www.b4x./?query=save+image+to+gallery B4A Question Save photo in gallery - JustinLong    Oct 04, 2018 I'm new to B4A and am having an issue that is driving me nuts.
I'm trying to take a picture then save it to the gallery. This doesn't seem like it should be this hard.
I'm currently using the code from this thread.
The picture will save in the directory I set, but it never shows up in the galler Page: 1   2   3   4   5   6   7   Powered by ColBERT |