AlpVir Well-Known Member Licensed User Longtime User Apr 19, 2018 #1 How to transform a normal label (with its content) into a JPG or PNG graphic file? Thanks in advance
Erel B4X founder Staff member Licensed User Longtime User Apr 19, 2018 #2 B4X: Dim x As B4XView = YourView Dim bmp As Bitmap = x.Snapshot Depends on XUI library. Upvote 0
ilan Expert Licensed User Longtime User Apr 19, 2018 #3 Erel said: B4X: Dim x As B4XView = YourView Dim bmp As Bitmap = x.Snapshot Depends on XUI library. Click to expand... really that simple??? can i also do that with a panel? can a b4xview be any view? Upvote 0
Erel said: B4X: Dim x As B4XView = YourView Dim bmp As Bitmap = x.Snapshot Depends on XUI library. Click to expand... really that simple??? can i also do that with a panel? can a b4xview be any view?
Erel B4X founder Staff member Licensed User Longtime User Apr 19, 2018 #4 ilan said: can i also do that with a panel? Click to expand... Yes. ilan said: can a b4xview be any view? Click to expand... Yes (the snapshot will return a black image for views such as google map). Any developer who is interested in developing for more than a single platform should become familiar with the XUI library: [B4X] [XUI] Cross platform & native UI library Upvote 0
ilan said: can i also do that with a panel? Click to expand... Yes. ilan said: can a b4xview be any view? Click to expand... Yes (the snapshot will return a black image for views such as google map). Any developer who is interested in developing for more than a single platform should become familiar with the XUI library: [B4X] [XUI] Cross platform & native UI library