How to save screen from an XNA app?
Answer / diana
Texture2D has a SaveAsJpeg method and a SaveAsPng method. Be aware that Zune does not sync pngs, so saveasjpeg is recommended
In April's CTP, you could try:
MediaLibrary library = new MediaLibrary(); library.SavePicture(“My Picture”, streamToJpegData); // You can use this from inside a Silverlight app provided you have the ID_CAP_MEDIALIB capability. // You do have to make sure the Stream you pass in contains JPEG file data, but otherwise it should work for you.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain where is xmldocument class?
Explain how to get the geolocation data on a picture?
How to deserialize json from a rest call?
Can we control the WebBrowser controls zooom?
How to detect if my application is exiting so I can save state?
Explain about windows phone bluetooth?
What is safety mode on my phone?
What is windows phone media support?
Where is xmldocument class?
Tell me where is the best recommended place to store both static and user-specified configuration information?
Tell me is asp.net forms authentication supported?
I looked through the medialibrary class in xna, and it looks like we can only enumerate through audio, but not video content in the media library?