BitConverter.ToInt32 的替代方案
我正在使用 BitConverter.ToInt32
将 3 个 byte
值打包到 int
中,如下所示:
byte R = 0;
byte G = 0;
byte B = 0;
int i = BitConverter.ToInt32(new byte[] { R, G, B, 0 }, 0);
是否有更快的方法来执行此操作不需要每次都创建一个新的int
吗?从 int
中获取字节很容易:
int i = 34234;
byte B = (byte)(i >> 0);
byte G = (byte)(i >> 8);
byte R = (byte)(i >> 16);
是否有一种简单的方法来反转此过程并使用位移位将 RGB 字节写回到现有的 int
上?
I'm using BitConverter.ToInt32
to pack 3 byte
values into an int
, like so:
byte R = 0;
byte G = 0;
byte B = 0;
int i = BitConverter.ToInt32(new byte[] { R, G, B, 0 }, 0);
Is there a faster way to do this that doesn't involve the creation of a new int
each time? Getting the bytes out of an int
is easy:
int i = 34234;
byte B = (byte)(i >> 0);
byte G = (byte)(i >> 8);
byte R = (byte)(i >> 16);
Is there a simple way to reverse this process and use bit-shifting to write the RGB bytes back over an existing int
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该考虑颜色结构。它具有 R、G 和 B 属性以及 FromArgb() 和 ToArgb() 方法。
You ought to consider the Color structure. It has R, G and B properties and FromArgb() and ToArgb() methods.