B4A Question Saving An Image With CamEx2 - MODERN TALKING (first post)    Dec 4, 2018   (1 reaction) Woops. No more OFF TOPIC posts. Work is work. SORRY... B4A Question CAMEX2 - DonManfred (first post)    Feb 6, 2019   (1 reaction) Why are you not using the Forumsearch??
https://www.b4x.com/android/forum/pages/results/?query=camex+save+image
https://www.b4x.com/android/forum/threads/how-to-save-preview-picture-in-camex.51707/#content
and you´ll find more examples.... B4A Code Snippet SaveAs - Let the user select a target folder + list of other related methods - Erel    Aug 1, 2021   (39 reactions) B4A + B4i example: https://www.b4x.com/android/forum/threads/b4x-texteditor-save-and-load-external... Download are not accessible: more information. SaveAs- this code, the opposite of ContentChooser or the simpler version of ExternalStorage. Allows the user to choose the place where the file will be saved...-external-storage-sdk-30.130411/ Sub SaveAs (Source As InputStream, MimeType As String, Title..., "test.txt", "test") 'just for the example. Wait For (SaveAs(File... B4A Tutorial [B4X] TextEditor - Save and load external files - Erel    Jul 24, 2022   (30 reactions) . B4A Load external files, including online files, using ContentChooser. Save to an external target, using SaveAs: https://www.b4x.com/android/forum/threads/saveas-let-the-user-select-a-target-folder... : Receiving shared images from other apps Extract information from the passed uri. Note that no...-with-activityviewcontroller.73159/#content This also allows saving the text with the Files app. Allow... B4A Library [B4X] BitmapCreator Effects - Erel    Apr 29, 2021   (31 reactions)   tags: image effect flip, BitmapCreator, Effect, B4X BitmapCreator Effects BitmapCreatorEffects class includes all kinds of very simple to use image effects. The class... then you should set the image when ScaleDown = False, with XUIViewsUtils.SetBitmapAndFill. v1.31... an image: Dim GreyImage As B4XBitmap = effects.GreyScale(ExistingBmp) 'Blur an image: Dim BlurImage As B4XBitmap = effects.Blur(ExistingBmp) 272558725 The attached examples demonstrate the various methods. Updates v1.40 - Adds support for B4XImageViews (XUI Views). - New ScaleDownImages... B4A Question How to save Preview picture in CamEx - Gary Milne    Mar 11, 2015 I think this is probably easy but I cannot find an example. In the CameraEx class there is a function called PreviewImageToJpeg(data() as byte, quality as Int) as Byte() The first parameter (data as byte array) refers to the camera preview image formatted in YUV. My code would be something like: Dim jpeg() As Byte = camEx.PreviewImageToJpeg(PreviewImage, 70) But what do I need to call in order to save the preview image into the byte array in the first place. Any help appreciated.... B4A Tutorial ImageDownloader - The simple way to download images - Erel    Oct 10, 2021   (13 reactions)   tags: image ) - framework for images, videos and more Downloading images with HttpUtils2 is quite simple. However correctly managing multiple downloads without downloading the same image multiple times, for example when the user changes the screen orientation, is more complicated. ImageDownloader makes it very simple to efficiently download images and show them in ImageViews. Example code: Sub Globals Dim ImageView3 As ImageView Dim ImageView2 As ImageView Dim ImageView1 As ImageView Dim ImageView4... B4A Library [B4X] BitmapsAsync - Erel    Nov 8, 2020   (30 reactions) with bitmap End If End If If the image size is larger than MaxWidth or MaxHeight then the image will be downsampled, similar to LoadBitmapSample (not LoadBitmapResize). The best way to work with such images is by setting the ImageView gravity to Fill and resizing the ImageView based on the bitmap size. See...A cross platform library that allows loading images using background threads. It can be useful with keeping the app responsive while loading many images. It is specifically built to work... B4i Question Save iBarcode preview as a bitmap? - JackKirk    Mar 9, 2016 Is it possible to save the iBarcode preview as a bitmap? I have tried code of the form: Private temp_imageview As ImageView Private temp_rect As Rect Private temp_bmp As Bitmap Private temp_canvas As Canvas temp_imageview.Initialize("") Page1.RootPanel.AddView(temp_imageview, 0, 0...) temp_canvas.DrawView(scanner_panel, temp_rect) temp_canvas.Refresh temp_bmp = BC_Canvas.CreateBitmap Dim temp_phone As Phone temp_phone.AddImageToAlbum(temp_bmp) where scanner_panel is the panel... B4A Question Images loaded in webviews are not displayed in mode “debug (rapid)” B4A 3.50 version - bgsoft    Mar 18, 2014 In the new Basic4Android 3.50 version, I realised that images loaded in webviews are not displayed in mode “debug (rapid)”. In other modes, as “debug (legacy)” and “release” are shown normally. There is a simple example to check this: Sub Globals Dim WebV As WebView End Sub Sub Activity_Create(FirstTime AsBoolean) Activity.LoadLayout("Layout1") WebV.Initialize...<body background='file:///android_asset/image.jpg'></body></html>") End... Page: 1   2   3   4   5   6   7   |