Bitmap.SetPixel(x,y, Color) 太慢

发布于 2024-08-06 15:57:52 字数 267 浏览 4 评论 0原文

目前我正在创建一个 1000x1000 位图,仅调用 Bitmap.SetPixel() 函数就花费了大约 0.3 秒。

实际上,我只绘制了大约 50% 的像素,因此更像是对 setpixel 的 500,000 次调用。虽然这看起来确实需要很多调用,但 OTOH 游戏要做的事情要多得多,并推送更多的像素(其中一些是程序生成的)。

显然 Bitmap.SetPixel 没有针对速度进行优化,但如果我需要每秒更新位图 20-30 次才能获得像样的动画,这会降低速度,那么我的选择是什么?

So currently I'm creating a 1000x1000 bitmap and it's spending about .3 seconds simply calling the Bitmap.SetPixel() function.

I'm actually only drawing probably 50% of the pixels so it's more like 500,000 call to setpixel. While that does seem like a lot of calls, OTOH video games are do alot more and push many many more pixels (some of them procedureally generated).

Obviously Bitmap.SetPixel isn't optimized for speed, but if I needed to update a bitmap 20-30 times a second to get decent animation, this is way to slow, so what are my options?

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

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

发布评论

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

评论(4

那一片橙海, 2024-08-13 15:57:52

Bob Powell 有一个很棒的教程直接访问内存中的像素图。

Bob Powell has an excellent tutorial on accessing pixel maps directly in memory.

束缚m 2024-08-13 15:57:52

现代热门视频游戏的所有像素设置均由硬件在幕后完成;它们为硬件提供了几何形状的缓冲区,并且高度并行化的硬件完成了所有的数学运算。 OpenGL 和 DirectX 是用于与硬件通信的 API。

gamedev.net 中搜索一些教程。

Modern blockbuster video games do all the pixel setting behind the scenes in hardware; they give the hardware a buffer of geometries and the highly parallelized hardware does all the math. OpenGL and DirectX are APIs for talking to the hardware.

Search gamedev.net for some tutorials.

苹果你个爱泡泡 2024-08-13 15:57:52

我可以推荐 FastBitmap

FastBitmap fb = new FastBitmap(b);
fb.LockImage();

...

fb.SetPixel(x, y, Color.Red);

...

fb.UnlockImage();

I can recommend FastBitmap:

FastBitmap fb = new FastBitmap(b);
fb.LockImage();

...

fb.SetPixel(x, y, Color.Red);

...

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