B4A Question How to save image in File.DirRootExternal and retrieve it - DonManfred (first post)    Jun 30, 2019   (2 reactions) 1. Create the Bitmap
dim bmp as bitmap = CreateRoundBitmap(Base64StringToImage(ktb), ImageView1.Width)
2. Save the bitmap
SavePhoto(bmp, filename)
3. Add the bitmap to the imageview
ImageView1.SetBitmap(bmp) B4A Question save image in mysql - KMatle (first post)    Feb 10, 2017   (1 reaction) Image -> bytes -> Base64 > longtext (or medium). I prefer this because it's easy to handle and you can add encryption, etc. very easy. You will need that "something2bytes" conversation very often like if you want to store an imagebto a file. Search for "bytes to file" for an example. B4A Question save two images side to side in one single image - William Lancee (first post)    Sep 02, 2021   (2 reactions) Rectangles are initialized with left, top, right, bottom. Not left, top, width, height!
Your RightRect has zero width. B4A Question How to reduce camera photo file size dramatically - emexes (first post)    Sep 30, 2023   (1 reaction) You could have a save-this-for-evidence button that, when you press it, locks in the last couple of minutes of images that are still filed away at one image every second, ideally still in original resolution and quality. Which reminds me: perhaps save the images originally in full quality, and then B4A Question How to save image and retrieve in DB - JhoeyBoy (first post)    Aug 25, 2022   (1 reaction) this is my solution on how to save the image in the db file.
hope it will help to others with same problem..
Lancer
Private Sub SwiftButtonBrowse_Click
CC.Show("image/*", "Choose image")
End Sub
Sub CC_Result (Success As Boolean, Dir As String, FileName As String)
If Success = Tr B4J Tutorial [BANanoFireStoreDB] Creating a Chat application - Mashiane (first post)    Sep 10, 2020   (2 reactions) 6. The saving process of the image file, returns a promise, from that promise, we use it to getDownloadPath which is the URL that firebase produces so that we can download the document. 7. We use that downloadURL and update the message we last saved so that the message has a firebase URL for the doc 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 SimpleMediaManager can save the images? - Carlos marin    May 14, 2024 Hello, I previously used the ImageDownloader method to download the images and then saved them on the device to avoid as many downloads to the image server as possible. I was looking at this new lib, but I don't see a method to manipulate the file after downloading it from the internet, its possibl B4A Question ZbarBarcodeScanner save image - Johan Schoeman (first post)    Dec 08, 2020 Probably two options:
1. Take a screenshot and then crop and save the Bitmap (check the forum for how to do it)
2. I add code to the library to return the preview frame (bitmap) that has been used for decoding the QR code - you will then have to add the code to save the Bitmap. B4A Question save image in SQL - toby (first post)    Aug 09, 2020   (1 reaction) For reading blob
Sub ReadBlob
Dim Cursor1 As Cursor = SQL1.ExecQuery2("SELECT image FROM table2 WHERE name = ?", Array As String("smiley"))
Cursor1.Position = 0
Dim Buffer() As Byte = Cursor1.GetBlob("image")
Dim InputStream1 As InputStream
InputStream1.InitializeFromBytesArray( Page: 1   2   3   4   5   6   7   Powered by ColBERT |