C# 更改Bitmap图像色彩模式

方法一:直接修改RGB的值

首先将BitmapData扫描线上的所有像素复制到字节数组中,然后遍历数组并对每个像素的RGB值进行修改,最后将修改后的像素值复制回BitmapData。这个过程不会影响原始的Bitmap对象,但会改变锁定的位图区域的数据。当完成修改后,应调用UnlockBits()方法释放锁定的位图区域。

cs 复制代码
System.Drawing.Bitmap bitBufferRGB = new System.Drawing.Bitmap("彩色Bitmap图像.jpg");
System.Drawing.Imaging.BitmapData data = bitBufferRGB.LockBits(
new System.Drawing.Rectangle(System.Drawing.Point.Empty, bitBufferRGB.Size),
System.Drawing.Imaging.ImageLockMode.ReadWrite, bitBufferRGB.PixelFormat);

//获取内存
IntPtr pData = data.Scan0;
int bytes = data.Stride * bitBufferRGB.Height;
byte[] rgbValues = new byte[bytes];

// Copy the RGB values into the array.
System.Runtime.InteropServices.Marshal.Copy(pData, rgbValues, 0, bytes);

for (int y = 0; y < bitBufferRGB.Height; y++)
{
    for (int x = 0; x < bitBufferRGB.Width; x++)
    {
        // 获取像素(x, y)在数组中的索引。
        int index = y * data.Stride + x * 3;

        // 修改RGB值。
        rgbValues[index] = (byte)(rgbValues[index] * 0.9); // 修改红色分量
        rgbValues[index + 1] = (byte)(rgbValues[index + 1] * 0.7); // 修改绿色分量
        rgbValues[index + 2] = (byte)(rgbValues[index + 2] * 0.9); // 修改蓝色分量
    }
}

// Copy the modified RGB values back to the bitmap.
System.Runtime.InteropServices.Marshal.Copy(rgbValues, 0, pData, bytes);

//解锁及释放资源
bitBufferRGB.UnlockBits(data);
bitBufferRGB.Dispose();

方法二:更换RGB的值位置

更换R和B的位置

cs 复制代码
System.Drawing.Bitmap bitBufferRGB = new System.Drawing.Bitmap("彩色Bitmap图像.jpg");
System.Drawing.Imaging.BitmapData data = bitBufferRGB.LockBits(
new System.Drawing.Rectangle(System.Drawing.Point.Empty, bitBufferRGB.Size),
System.Drawing.Imaging.ImageLockMode.ReadWrite, bitBufferRGB.PixelFormat);

//获取内存
IntPtr pData = data.Scan0;
int bytes = data.Stride * bitBufferRGB.Height;
byte[] rgbValues = new byte[bytes];
System.Runtime.InteropServices.Marshal.Copy(pData, rgbValues, 0, bytes);

for (int i = 0; i < height; i++)
{
    for (int ji = 0; ji < width; ji++)
    {
        int index = i * width + ji;
        // 每个像素占用三个字节
        // 红色字节
        rgbValues[index * 3] = System.Runtime.InteropServices.Marshal.ReadByte(pData, index * 3 + 2);
        // 绿色字节
        rgbValues[index * 3 + 1] = System.Runtime.InteropServices.Marshal.ReadByte(pData, index * 3 + 1);
        // 蓝色字节
        rgbValues[index * 3 + 2] = System.Runtime.InteropServices.Marshal.ReadByte(pData, index * 3);
    }
}
System.Runtime.InteropServices.Marshal.Copy(rgbValues, 0, pData, bytes);

//解锁及释放资源
bitBufferRGB.UnlockBits(data);
bitBufferRGB.Dispose();
相关推荐
码农君莫笑3 小时前
使用blazor开发信息管理系统的应用场景
数据库·信息可视化·c#·.net·visual studio
可喜~可乐5 小时前
C# WPF开发
microsoft·c#·wpf
666和7779 小时前
C#的单元测试
开发语言·单元测试·c#
小码编匠10 小时前
WPF 星空效果:创建逼真的宇宙背景
后端·c#·.net
向宇it13 小时前
【从零开始入门unity游戏开发之——unity篇02】unity6基础入门——软件下载安装、Unity Hub配置、安装unity编辑器、许可证管理
开发语言·unity·c#·编辑器·游戏引擎
yngsqq13 小时前
一键打断线(根据相交点打断)——CAD c# 二次开发
windows·microsoft·c#
TENET信条14 小时前
day53 第十一章:图论part04
开发语言·c#·图论
anlog16 小时前
C#在自定义事件里传递数据
开发语言·c#·自定义事件
向宇it17 小时前
【从零开始入门unity游戏开发之——unity篇01】unity6基础入门开篇——游戏引擎是什么、主流的游戏引擎、为什么选择Unity
开发语言·unity·c#·游戏引擎
仰望大佬00717 小时前
Avalonia实例实战五:Carousel自动轮播图
数据库·microsoft·c#