Windows Phone截取当前屏幕保存图像的代码_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > Windows Phone截取当前屏幕保存图像的代码

Windows Phone截取当前屏幕保存图像的代码

 2014/12/23 18:45:13  wzwyc  程序员俱乐部  我要评论(0)
  • 摘要:导入以下命名空间:usingSystem.Windows.Media.Imaging;usingSystem.IO;usingMicrosoft.Xna.Framework.Media;全部代码如下:publicvoidCaptureScreen(objectsender,EventArgse){WriteableBitmapbmp=newWriteableBitmap(480,800);bmp.Render(App.Current.RootVisual,null);bmp
  • 标签:Windows 代码

 

导入以下命名空间:

using System.Windows.Media.Imaging;
using System.IO;
using Microsoft.Xna.Framework.Media;

 

全部代码如下:

public void CaptureScreen(object sender, EventArgs e)
{
    WriteableBitmap bmp = new WriteableBitmap(480, 800);
    bmp.Render(App.Current.RootVisual, null);
    bmp.Invalidate();

    MemoryStream stream = new MemoryStream();
    bmp.SaveJpeg(stream, bmp.PixelWidth, bmp.PixelHeight, 0, 80);
    stream.Seek(0, SeekOrigin.Begin);

    MediaLibrary library = new MediaLibrary();
    string fileName = "ScreenShot_" + DateTime.Now.ToString("yyyy-mm-dd_hh:mm:ss");
    library.SavePicture(fileName, stream);
    stream.Close();

    Dispatcher.BeginInvoke(() =>
    {
        PictureCollection picCollection = library.Pictures;
        foreach (Picture item in picCollection)
        {
            if (item != null)
            {
                BitmapImage bitmap = new BitmapImage();
                bitmap.SetSource(item.GetImage());
            }
        }
    });
}

 

转自:http://terryblog.blog.51cto.com/1764499/551752/

发表评论
用户名: 匿名