问题遇到的现象和发生背景
用c语言实现图像的反色,能够实现图像的打开,写入,但是进行图像反色的时候,就会导致输出的图像无法打开,而如果仅仅打开图片,然后将这个图片的二进制数据取出来保存写入另一个图片文件中,是可以打开新生成的这个文件的,相当于复制了一遍,但是一旦进行图像反色处理:r=255-l,进行这个计算之后再把二进制数据写入之后,新生成的图片文件就打不开了
用代码块功能插入代码,请勿粘贴截图
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define height 500
#define width 1500
typedef unsigned char BYTE; // 定义BYTE类型,占1个字节
int main()
{
FILE *fp = NULL;
BYTE B[height][width];
BYTE *ptr;
char path[256];
char outpath[256];
int i,j;
// 输入源路径并打开raw图像文件
printf("Input the raw image path: ");
scanf("%s",path);
if((fp = fopen( path, "rb" )) == NULL)
{
printf("can not open the raw image " );
return;
}
else
{
printf("read OK");
}
// 分配内存并将图像读到二维数组中
ptr = (BYTE*)malloc( width * height * sizeof(BYTE) );
for( i = 0; i < height; i++ )
{
for( j = 0; j < width ; j ++ )
{
fread( ptr, 1, 1, fp );
B[i][j]= *ptr; // 把图像输入到2维数组中,变成矩阵型式
//printf("%d ",B[i][j]);
ptr++;
}
}
fclose(fp);
printf("\n ");
printf("\n ");
printf("\n ");
printf("\n ");
printf("\n ");
// 这里可以对二维数组中的图像数据进行处理
for (i = 0; i < height; i++)
{
for (j = 0; j < width; j++)
{
B[i][j] = 255- B[i][j] ; // 图像反相
//printf("%d ",B[i][j]);
}
}
// 将处理后的图像数据输出至文件
printf("Input the raw_image path for save: ");
scanf("%s",outpath);
if( ( fp = fopen( outpath, "wb" ) ) == NULL )
{
printf("can not create the raw_image : %s\n", outpath );
return;
}
for( i = 0; i < height; i++ )
{
for( j = 0; j < width ; j ++ )
{
fwrite( &B[i][j], 1 , 1, fp );
}
}
fclose(fp);
}
运行结果及报错内容
我的解答思路和尝试过的方法
我认为我从图片中读出数据和写入数据过程没有问题,疑问就是为什么用255减去二进制数据后,得到的所有数据都在0-255以内,为什么用这些数据写入图片中,无法得到反色图片,甚至根本无法打开图片