在 Silverlight 中寻找高速位图渲染

发布于 11-24 06:28 字数 501 浏览 1 评论 0原文

我试图在 Silverlight 中实现高速位图写入,并使用 WriteableBitmap 来实现。该场景是重复将 UIElement(如 Image)写入 1000x1000 大小的位图:

WriteableBitmap bitmap = new WriteableBitmap(w, h);
...
for (...) {
   bitmap.Render(patternImg, mymatrix);
   bitmap.Invalidate();
}

这里,silverlight 似乎每秒只能绘制大约 50 次。 而在 HTML5 中,通过使用 Canvas, context.drawImage(image, dx, dy) ,它每秒可以执行超过 5000 次(在 1000x1000 位图上,如果我没有犯错的话...... )

看来silverlight的writableBitmap并没有利用硬件图形管道,有没有办法在silverlight中实现高速位图渲染?

I was trying to achieve high speed bitmap writing in Silverlight, and used WriteableBitmap to do it. The scenario is repeatedly writing UIElement like Image onto a 1000x1000 sized bitmap:

WriteableBitmap bitmap = new WriteableBitmap(w, h);
...
for (...) {
   bitmap.Render(patternImg, mymatrix);
   bitmap.Invalidate();
}

Here, silverlight seems can only draw about 50 times per second.
While in HTML5, by using Canvas, context.drawImage(image, dx, dy) , it can do over 5000 times per second (on a 1000x1000 bitmap, if I didn't make mistake...)

It seems silverlight's writableBitmap does not utilize the hardware graphic pipeline, is there any way to achieve high-speed bitmap rendering in silverlight?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

戒ㄋ2024-12-01 06:28:01

如果您还没有找到这些,这里有一些可能有用的链接:

WriteableBitmapEX(开源项目):

http:// /writeablebitmapex.codeplex.com/

WriteableBitmapEx 功能介绍:

http://blogs.claritycon.com/blog/2011/03/30/advanced-animation-animating-15000-visuals-in-silverlight-2/

Silverlight 中的高性能渲染:

http://andrewrussell.net/2010/12/high-performance-rendering-in-silverlight/

If you haven't found these already, here are some links that may be helpful:

WriteableBitmapEX (open source project):

http://writeablebitmapex.codeplex.com/

introduction into WriteableBitmapEx capabilities here:

http://blogs.claritycon.com/blog/2011/03/30/advanced-animation-animating-15000-visuals-in-silverlight-2/

High performance redering in Silverlight:

http://andrewrussell.net/2010/12/high-performance-rendering-in-silverlight/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文