文件名称:读取图片像素的具体实例
文件大小:15KB
文件格式:PDF
更新时间:2024-02-10 00:23:57
像素 图片
代码如下: public static short[][] GetPixs(Bitmap bitmap) { int height = bitmap.Height; int width = bitmap.Width; byte tempB, tempG, tempR; short[][] spOriginData = new short[height][]; for (int i = 0; i < height; i++) {