ImageCapture.rar ImageCapture.cs
http://read.pudn.com/downloads47/sourcecode/windows/csharp/160828/ImageCapture.cs__.htm
ImageCapture


CodeProject: Capturing Minimized Window: A Kid’s Trick. Free source code and programming help
http://www.codeproject.com/KB/cs/CapturingMinimizedWindow.aspx



Capture image and print in WPF.
http://www.a2zdotnet.com/View.aspx?id=67
RenderTargetBitmap bmp = new RenderTargetBitmap((int)this.ActualWidth, (int)this.ActualHeight, 96, 96, PixelFormats.Pbgra32);


    bmp.Render(this);


25.Path和位图操作 – 雅博的日志 – 网易博客
http://hzyup.blog.163.com/blog/static/103326012009101351751459/



WPF 窗口保存成图片 – 一个半天的日志 – 网易博客
http://blog.163.com/wangzhenguo2005@126/blog/static/37140526200910484546570/
RenderTargetBitmap targetBitmap =


    new RenderTargetBitmap((int)inkCanvas1.ActualWidth,


                           (int)inkCanvas1.ActualHeight,


                           96d, 96d,


                           PixelFormats.Default);


targetBitmap.Render(inkCanvas1);


 


// add the RenderTargetBitmap to a Bitmapencoder


BmpBitmapEncoder encoder = new BmpBitmapEncoder();


encoder.Frames.Add(BitmapFrame.Create(targetBitmap));


 


// save file to disk


FileStream fs = File.Open(fileName, FileMode.OpenOrCreate);


encoder.Save(fs);


Media Glass ( My simple WPF Media Player )
http://mediaglass.codeplex.com/



WPF Performance and .NET Framework Client Profile : What’s new in WPF 3.5 SP1: Splash Screen to improve perceived startup perf
http://blogs.msdn.com/jgoldb/archive/2008/08/12/what-s-new-in-wpf-3-5-sp1-splash-screen-to-improve-perceived-startup-perf.aspx



WPF Performance and .NET Framework Client Profile : Splash Screen To Improve WPF Application Perceived Cold Startup Performance
http://blogs.msdn.com/jgoldb/archive/2007/12/10/splash-screen-to-improve-wpf-application-perceived-cold-startup-performance.aspx



用propertygrid如何控制只显示某些属性和自定义属性? .NET技术 / VB.NET – CSDN社区 community.csdn.net
http://topic.csdn.net/t/20050523/10/4027759.html
System.ComponentModel.Browsable(False)


充分利用 .net 框架的 propertygrid 控件2_编程资料
http://hi.baidu.com/csuhkx/blog/item/3c092124afe87d35c9955974.html



运行时自定义PropertyGrid显示属性项目 – 积累与沉淀的跌代 – 博客园
http://www.cnblogs.com/pvistely/archive/2007/08/02/327656.html



如何使用代码设置PropertyGrid的标签栏宽度 – 挨踢人, 挨踢党 – 博客园
http://www.cnblogs.com/badder/archive/2008/09/11/programmatically-set-column-width-of-the-propertygrid.html



RenderTargetBitmap 类 (System.Windows.Media.Imaging)
http://msdn.microsoft.com/en-us/system.windows.media.imaging.rendertargetbitmap(zh-cn).aspx



Screen Capture and Save as an Image
http://www.c-sharpcorner.com/UploadFile/perrylee/ScreenCapture11142005234547PM/ScreenCapture.aspx



将玻璃框扩展到 WPF 应用程序
http://msdn.microsoft.com/zh-cn/library/ms748975.aspx
IntPtr mainWindowPtr = new WindowInteropHelper(this).Handle; HwndSource mainWindowSrc = HwndSource.FromHwnd(mainWindowPtr); mainWindowSrc.CompositionTarget.BackgroundColor = Color.FromArgb(0, 0, 0, 0); // Get System Dpi System.Drawing.Graphics desktop = System.Drawing.Graphics.FromHwnd(mainWindowPtr);


WPF控件有句柄么?有的话请告诉怎么样获取
http://topic.csdn.net/u/20091112/15/bf895e62-e106-44b8-b49a-ccd19d5cdea9.html
new WindowInteropHelper(this).Handle


C#中三种截屏方式总结 – YuFun’s 自动化测试随笔 – 博客园
http://www.cnblogs.com/yufun/archive/2009/01/20/1378812.html



Capture image and print in WPF.
http://www.a2zdotnet.com/View.aspx?id=67



C#实现从视频文件中读取关键帧数据源代码 Extract frames from video files
http://www.codesoso.com/code/Extract-Video-Frame.aspx



C# 视频监控系列(13):H264播放器——控制播放和截图 – 农民伯伯 – 博客园
http://www.cnblogs.com/over140/archive/2009/03/30/1421531.html



C# ffmpeg截图 – 捕鱼者说 – 博客园
http://www.cnblogs.com/fishert/articles/841762.html
  string kk = “ffmpeg -i \”" + avsPath + “\” -vframes 1 -r 1 -ac 1 -ab 2 -f image2 -t 0.001 \”" + fileout + “\\” + filename + “.jpg\”\n”;
3                     System.Diagnostics.Process myProc1 = new System.Diagnostics.Process();
4                     myProc1.StartInfo.FileName = “cmd.exe”;
5                     myProc1.StartInfo.Arguments = @” /c ” + kk;
6                     myProc1.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
7                     myProc1.Start();


C# 视频监控系列(12):H264播放器——播放录像文件 – 农民伯伯 – 博客园
http://www.cnblogs.com/over140/archive/2009/03/23/1419643.html



用DirectShow抓取影片帧
http://www.myfaq.com.cn/A/2005-07-20/164481.html



C#解压缩,压缩和读取flash头文件信息 – C#|DOTNET – yaosansi’s Blog
http://www.yaosansi.com/post/1314.html



C#从视频截图的方法 – C#|DOTNET – yaosansi’s Blog
http://www.yaosansi.com/post/1271.html
ffmpeg


How to open MP4,MKV,WMV,RM,MOV,OGM with any editor,encoder – Others – yaosansi’s Blog
http://www.yaosansi.com/post/1419.html



VB 隐藏窗口截图/不可视区域载图 – SilenceNet的专栏 – CSDN博客
http://blog.csdn.net/SilenceNet/archive/2009/06/18/4278065.aspx



c#截图(非API版) – 7Keli.com的日志 – 网易博客
http://blog.163.com/da7_1@126/blog/static/104072678200911256359795/
CopyFromScreen


CopyFromScreen方法的使用案例
http://www.myfirm.cn/News/dotNetGUIAPI/20080317015458437.html



话题 – 中国软件人家园
http://i.cnsoftware.cn/space-dfwthread-id-3234356.html



C#实现从视频文件中读取关键帧数据源代码 Extract frames from video files
http://www.codesoso.com/code/Extract-Video-Frame.aspx



CodeProject: Extract Frames from Video Files. Free source code and programming help
http://www.codeproject.com/KB/graphics/ExtractVideoFrames.aspx



 

历史博文

标签:
一月 21, 2010 at 6:54 下午 by yippee 39 次
Category: Info
Tags: