Zeev Goldstein Well-Known Member Licensed User Longtime User Mar 17, 2023 #1 i have a webview loaded mainly with text is there a way to save it a an image? thank you
Jeffrey Cameron Well-Known Member Licensed User Longtime User Mar 17, 2023 #2 I believe the webview has a .Snapshot property, if not you could place it inside a transparent panel and use the panel's .Snapshot property. Upvote 0
I believe the webview has a .Snapshot property, if not you could place it inside a transparent panel and use the panel's .Snapshot property.
Zeev Goldstein Well-Known Member Licensed User Longtime User Mar 18, 2023 #3 Jeffrey Cameron said: I believe the webview has a .Snapshot property, if not you could place it inside a transparent panel and use the panel's .Snapshot property. Click to expand... tried it webview doesn't have .snapshot and panel also doesn't have it my app is an activity app... Upvote 0
Jeffrey Cameron said: I believe the webview has a .Snapshot property, if not you could place it inside a transparent panel and use the panel's .Snapshot property. Click to expand... tried it webview doesn't have .snapshot and panel also doesn't have it my app is an activity app...
Sagenut Expert Licensed User Longtime User Mar 18, 2023 #4 Zeev Goldstein said: and panel also doesn't have it Click to expand... Panel must be declared as B4XView to get the Snapshot method. In alternative, without changing your code, try B4X: Yourpanel.As(B4XView).Snapshot Upvote 0
Zeev Goldstein said: and panel also doesn't have it Click to expand... Panel must be declared as B4XView to get the Snapshot method. In alternative, without changing your code, try B4X: Yourpanel.As(B4XView).Snapshot
Zeev Goldstein Well-Known Member Licensed User Longtime User Mar 18, 2023 #5 Sagenut said: Panel must be declared as B4XView to get the Snapshot method. In alternative, without changing your code, try B4X: Yourpanel.As(B4XView).Snapshot Click to expand... thanks - will try Upvote 0
Sagenut said: Panel must be declared as B4XView to get the Snapshot method. In alternative, without changing your code, try B4X: Yourpanel.As(B4XView).Snapshot Click to expand... thanks - will try