Xam.Plugin.Screenshot

Take screenshots from any platform with this plugin.


Keywords
xamarin, netstandard, xam.pcl, screenshot, windows, android, xamarin.forms, ios, csharp, nuget, pcl, plugin, xamarin-forms
License
MIT
Install
Install-Package Xam.Plugin.Screenshot -Version 2.0.3

Documentation

Screenshot Plugin for Xamarin and Windows

A simple Screenshot plugin for Xamarin and Windows to get and save screenshot in yours apps.

Build status NuGet Donate

NuGet

Github Packages Registry

Platform Support

Platform Version
Xamarin.iOS iOS 8+
Xamarin.Android API 14+
Windows 10 UWP 10+

Documentation

Get bytes[] from screenshot

using Plugin.Screenshot;

...

var stream = new MemoryStream(await CrossScreenshot.Current.CaptureAsync());
yourImage.Source = ImageSource.FromStream(() => stream);

Save Screenshot into Gallery Images and return path

using Plugin.Screenshot;

...

string path = await CrossScreenshot.Current.CaptureAndSaveAsync();

iOS setup

Add in your Info.plist

<key>NSPhotoLibraryUsageDescription</key>
  <string>This application needs your permission to save photos.</string>
<key>NSPhotoLibraryAddUsageDescription</key>
	<string>This application needs your permission to save photos.</string>	

Created By: @Wilson Vargas

License

The MIT License (MIT), see LICENSE file.