Hi,
is there a "generic" way to get a Bitmap from a View? I know you can use WebView.CaptureBitmap for instance for WebView but is there any way for "generic" views?
I have the following code but it does not seem to work (it seems to get a valid Canvas):
Sub GetBitmap(aView As View) As Bitmap
Dim c As Canvas
c.Initialize(aView)
Return c.BitMap
End Sub
is there a "generic" way to get a Bitmap from a View? I know you can use WebView.CaptureBitmap for instance for WebView but is there any way for "generic" views?
I have the following code but it does not seem to work (it seems to get a valid Canvas):
Sub GetBitmap(aView As View) As Bitmap
Dim c As Canvas
c.Initialize(aView)
Return c.BitMap
End Sub