Devv Active Member Licensed User Longtime User Sep 11, 2016 #1 hi how can i convert a bitmap image to drawable ?
Erel B4X founder Staff member Licensed User Longtime User Sep 12, 2016 #2 B4X: Dim bd As BitmapDrawable bd.Initialize(bmp) Upvote 0
eurojam Well-Known Member Licensed User Longtime User Sep 12, 2016 #3 like this I think: B4X: Dim bmp As Bitmap Dim bd As BitmapDrawable bmp.Initialize(File.DirAssets, "image1.jpg") bd.Initialize( bmp) Upvote 0
like this I think: B4X: Dim bmp As Bitmap Dim bd As BitmapDrawable bmp.Initialize(File.DirAssets, "image1.jpg") bd.Initialize( bmp)