图片饱和度更改,c#,winform
c#中Bitmap的颜色是RGB,需要转换为HSV之后进行处理。//xa,ya是饱和度调整的起点坐标,xb,yb是饱和度调整的起点坐标。//trackBar2是饱和度调整的滑动条,把50设为原点。private Bitmap Baohedu(Bitmap oop, int xa, int xb, int ya, int yb) { Bitmap nop; nop = oop.Clone() as Bitmap; ...