B4A Code Snippet [B4X] [XUI] Create a round image - Erel    Jan 21, 2021   (32 reactions)   tags: bitmap, XUI, B4a .LoadBitmap(File.DirAssets, "myimage.jpg")
ImageView1.SetBitmap(CreateRoundBitmap(img...:
Dim xIV As B4XView = ImageView1
xIV.SetBitmap(CreateRoundBitmap(img, xIV .Width))
... B4A Code Snippet Draw round bitmap - Erel    Sep 4, 2016   (25 reactions) Sub Name: DrawRoundBitmap
Description: This code uses Path object to draw a round bitmap... As Canvas = CreateBitmap
DrawRoundBitmap(cvs, LoadBitmap(File.DirAssets, "1.jpg"))
Activity... B4A Question How to create round image - junaidahmed    Jul 7, 2023 I am going to create round image as per below link but I am getting the below error message. Please...(CreateRoundBitmap(iv, xIV .Width))
javac 1.8.0_371
src\one\erp\productionentry.java:516: error... B4A Code Snippet [B4X] [XUI] Rectangle image with rounded corners - Erel    Nov 19, 2017   (14 reactions) .SetBitmap(CreateRoundRectBitmap(img, 20dip)) 'ImageView1 type is set to B4XView
...Code to create a rectangle image with rounded corners:
https://www.b4x.com/basic4android/images/SS... B4A Example RoundBitmapWithBorder - inline java code - Johan Schoeman    Aug 2, 2015   (12 reactions) Attached project draws a circular bitmap within an imageview including an adjustable border (colour and width) around the image. Making use of inline java code. Only JavaObject V2.01 required.
32897... B4A Question SimpleMediaManager Round Image and Round Background - BarryW    Feb 20, 2022 How to set round background for SimpleMediaManager
I'm using this code, only the image is round not the background
Dim extra As Map
extra.Initialize
extra.Put(MediaManager.REQUEST_ROUNDIMAGE... B4A Library RoundImage V1.0 - DonManfred    Feb 5, 2015   (21 reactions) RoundImage V1.0
This Library can create a round image from an bitmap or an round drawable from an drawable
Sub Globals
Dim ri As RoundImage
Private Panel1 As Panel
Private ImageView1... B4A Library SelectableRoundedImageView - Johan Schoeman    Jul 4, 2015   (10 reactions)
35261
SelectableRoundedImageView
Version: 1
SelectableRoundedImage
Fields:
ba As BA
Methods... As Boolean
RemoveView
RequestFocus As Boolean
SendToBack
SetBackgroundImage (arg0 As Bitmap... B4A Question bitmap background image on a ROUND CORNERS Panel, How? - Cableguy    Nov 12, 2015 Hi Guys,
I'm trying to set a bitmap to be the background of a Panel, no issues there, my problem is, I want to keep the round corners of the panel, I can live with loosing the border... and... B4A Question CreateRoundRectBitmap and ImageDownloader - MarcoRome    Jan 20, 2020 ")
Dim img As B4XBitmap = xui.LoadBitmap(File.DirAssets, immagine)
ImageView1.SetBitmap(CreateRoundBitmap(img, ImageView1.Width))
Return p
End Sub
But how to use the same to....
I would like to use the CreateRoundRectBitmap ( https://www.b4x.com/android/forum/pages/results... Page: 1   2   3   |