Black and white Image using C

Following the previous blog posts, I hope you now get a pretty clear idea about how to go ahead with image processing in C. In this blog post, we will discuss about creating a bright image of an image.

For this blog post, we will again use our usual, lena’s face.

Lena Grayscale

The complete code for this post can be found here.

Starting with the usual procedure, image is nothing but a file for C. So go ahead and open the file.

FILE* fp = fopen("/path/to/your/image.bmp", "rb");   //read the file//

Following the Bitmap basics, strip out the image header.

fread(imageHeader, sizeof(unsigned char), 54, fp); // read the 54-byte from fp to imageHeader

Extract the required information from the image header,

  • Width
  • Height
  • bitDepth
// extract image height and width from imageHeader      
int width = *(int*)&imageHeader[18];
int height = *(int*)&imageHeader[22];
int bitDepth = *(int*)&imageHeader[28];

Next, read the colorTable if it exists.

if(bitDepth <= 8)	// COLOR TABLE Present
	fread(colorTable, sizeof(unsigned char), 1024, fp); // read the 1024-byte from fp to colorTable

Now, we will read the image data in buffer from input file using fread.

int imgDataSize = width * height; // calculate image size

fread(buffer,sizeof(unsigned char),imgDataSize,fp);			//read image data

Now, to make the image black and white, we need to convert pixel values into 0(BLACK) and 255(WHITE) and store that values of pixels in buffer. For that, we replace all the pixel values above THRESHOLD (here 128) into 255 and below THRESHOLD into 0.

The basic equation would be something like,

buffer[i] = (buffer[i] > THRESHOLD) ? WHITE : BLACK;

Now, it’s time to write the C code for the same. We know that the image is arranged in terms of rows and columns, hence running for loops should solve our purpose.

for(i = 0; i < size; i++)
{
	buffer[i] = (buffer[i] > THRESHOLD) ? WHITE : BLACK;
}

Now that we have the new image data in our buffer array, it’s time to construct the output image.

Open the output file and write the image header and colortable to it.

FILE *fo = fopen("/path/to/output/image.bmp", "wb");

fwrite(imageHeader, sizeof(unsigned char), 54, fo); // write the header back.
if(bitDepth <= 8)	// COLOR TABLE Present
       	fwrite(colorTable, sizeof(unsigned char), 1024, fo); // write the color table back

Now write the buffer information to the output image

fwrite( buffer, sizeof(unsigned char), imgDataSize, fo); // write the values of the black & white image.

Now that everything is complete, time to close the files.

fclose(fo);
fclose(fp);

Compile the program, and run it. You should have a black and white image of lena formed in your specified directory.

Lena Black_White

If you are able to create the image as above, you have succesfully written your program to make the image black and white ! :wink:

Author:- Priya Shah

Written on January 7, 2018