本文介绍了修改图像中像素颜色的代码.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

帮助我编写代码来修改图像中的像素颜色.

help me to write a code that modify pixel color in an image.

推荐答案

Bitmap bmp = (Bitmap)pictureBox1.Image;
bmp.SetPixel(5, 5, Color.White);
pictureBox1.Image = (Image)bmp;


请注意,GetPixelSetPixel非常慢.您应该看一下Christian的文章,看看他是如何使用不安全的代码解决此问题的.


Please note that GetPixel and SetPixel is very slow. You should have a look at Christian''s article and see how he solves this issue using unsafe code.



这篇关于修改图像中像素颜色的代码.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 04:37