gitawego / cordova-screenshot

screenshot plugin for cordova/phonegap
Other
211 stars 168 forks source link

This plugin is compatible with Windows Phone 8.1 ? #23

Open MateenKadwaikar opened 10 years ago

MateenKadwaikar commented 10 years ago

Hi, I am going to use this plugin for windows phone 8.1 I just want to know that if this plugin is compatible with 8.1 or it is still 8 ?

If not can you please update this plugin accordingly

Thanks.

bau720123 commented 10 years ago

hi @gitawego I have the same question I know there is no WP8 version for now on PGB https://build.phonegap.com/plugins/1055

but wish one day have a WP8 version thanks

PS this is a awesome plugin

EddyVerbruggen commented 9 years ago

If a WP version is ever considered, then this piece of code may be of help. It's how I grab a screenshot on WP for the cordova Native Page Transitions plugin:

CordovaView cView = getCordovaView();
WebBrowser browser = browser = cView.Browser;

WriteableBitmap bmp = new WriteableBitmap(browser, null);
Image img = new Image();
img.Source = bmp;

private CordovaView getCordovaView() {
  PhoneApplicationFrame frame = (PhoneApplicationFrame)Application.Current.RootVisual;
  PhoneApplicationPage page = (PhoneApplicationPage)frame.Content;
  return (CordovaView)page.FindName("CordovaView");
}

Full source here.

Best, Eddy