Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wilsonvargas/ScreenshotPlugin

A simple Screenshot plugin for Xamarin and Windows to get and save screenshot in yours apps.
https://github.com/wilsonvargas/ScreenshotPlugin

csharp nuget pcl plugin screenshot xamarin xamarin-forms

Last synced: 3 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# Screenshot Plugin for Xamarin and Windows

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

[![Build status](https://ci.appveyor.com/api/projects/status/1w46g7ebn59w6d0f?svg=true)](https://ci.appveyor.com/project/wilsonvargas/screenshotplugin) [![NuGet](https://buildstats.info/nuget/Xam.Plugin.Screenshot)](https://www.nuget.org/packages/Xam.Plugin.Screenshot/) [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/wilsondonations/5)

## NuGet
* NuGet: [Xam.Plugin.Screenshot](https://www.nuget.org/packages/Xam.Plugin.Screenshot)

## Github Packages Registry
* Github Packages Registry: [Xam.Plugin.Screenshot](https://github.com/wilsonvargas/ScreenshotPlugin/packages/25791)

## Platform Support

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

## Documentation

### Get bytes[] from screenshot

```c#
using Plugin.Screenshot;

...

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

### Save Screenshot into Gallery Images and return path

```c#
using Plugin.Screenshot;

...

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

### iOS setup
Add in your Info.plist
```xml
NSPhotoLibraryUsageDescription
This application needs your permission to save photos.
NSPhotoLibraryAddUsageDescription
This application needs your permission to save photos.
```

### Created By: [@Wilson Vargas](http://twitter.com/Wilson_VargasM)
* Twitter: [@Wilson_VargasM](http://twitter.com/Wilson_VargasM)
* Blog: [wilsonvargas.net](https://wilsonvargas.net)

### License
The MIT License (MIT), see [LICENSE](LICENSE) file.