Save screenshot to PicturesLibrary impossible without MediaLibrary?

I’m trying to save a screenshot of my game (WinPhone 8.0) to the pictures library but as MediaLibrary is not implemented in Monogame I’m unsure how to proceed?

Official XNA MediaLibrary class: http://msdn.microsoft.com/en-us/library/ff604987.aspx

Create a new project and attach it to your existing Monogame project. Then use the new project to call Microsoft.Xna.Framework.Media.MediaLibrary.

You cannot call Microsoft.Xna.Framework.Media.MediaLibrary from the Monogame project as Monogame classes are mapped to the Microsoft.Xna classes.

1 Like

Brilliant in its simplicity! Thanks for the solution!