如何使用 .NET CF 2.0 获取位图的 PixelFormat?
我正在尝试加快某些图像缩放和图像缩放的性能。 基于.Net Compact Framework 2.0 的移动应用程序中的着色例程。 我发现了 Bitmap.LockBits 方法,但是当紧凑框架不支持 PixelFormat 属性时,如何获取 Bitmap 的 PixelFormat 呢?
I'm trying to speed up performance of some image scaling & coloring routines in a mobile app based on .Net compact framework 2.0. I've discovered the Bitmap.LockBits method, but how can I get a Bitmap's PixelFormat when the PixelFormat property is not supported in the compact framework?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
OpenNetCF Framework 包含一个实现 PixelFormat 属性的 BitmapData 类。
The OpenNetCF Framework contains a BitmapData class that implements the PixelFormat property.
下面是添加 .netCF 默认情况下不支持的内容的示例。 您可以尝试相同的方法。
http://blogs.msdn.com/chrislorton/archive/ 2006/04/07/570649.aspx
Here is an example of adding something that is not by default supported by .netCF. You can try the same approach.
http://blogs.msdn.com/chrislorton/archive/2006/04/07/570649.aspx