// open input file FILE *inptr = fopen(infile, "r"); // if input file cannot be opened for reading // return 2 and reming if (inptr == NULL) { fprintf(stderr, "Could not open %s.\n", infile); return2; }
// open output file FILE *outptr = fopen(outfile, "w"); // if the output file cannot be opened for writing // return 3 and remind if (outptr == NULL) { fclose(inptr); fprintf(stderr, "Could not create %s.\n", outfile); return3; }
// determine padding for scanlines int padding = (4 - (bi.biWidth * sizeof(RGBTRIPLE)) % 4) % 4;
// iterate over infile's scanlines for (int i = 0, biHeight = abs(bi.biHeight); i < biHeight; i++) { // iterate over pixels in scanline for (int j = 0; j < bi.biWidth; j++) { // temporary storage RGBTRIPLE triple;
// read RGB triple from infile fread(&triple, sizeof(RGBTRIPLE), 1, inptr);
//TODO: change the color of red to white if (triple.rgbtBlue == 0x00 && triple.rgbtGreen == 0x00 && triple.rgbtRed == 0xff) { triple.rgbtBlue = 0xff; triple.rgbtGreen = 0xff; }
// BMP-related data types based on Microsoft's own
#include<stdint.h>
// aliases for C/C++ primitive data types // https://msdn.microsoft.com/en-us/library/cc230309.aspx typedefuint8_t BYTE; typedefuint32_t DWORD; typedefint32_t LONG; typedefuint16_t WORD;
// information about the type, size, and layout of a file // https://msdn.microsoft.com/en-us/library/dd183374(v=vs.85).aspx typedefstruct { WORD bfType; DWORD bfSize; WORD bfReserved1; WORD bfReserved2; DWORD bfOffBits; } __attribute__((__packed__)) BITMAPFILEHEADER;
// information about the dimensions and color format // https://msdn.microsoft.com/en-us/library/dd183376(v=vs.85).aspx typedefstruct { DWORD biSize; LONG biWidth; LONG biHeight; WORD biPlanes; WORD biBitCount; DWORD biCompression; DWORD biSizeImage; LONG biXPelsPerMeter; LONG biYPelsPerMeter; DWORD biClrUsed; DWORD biClrImportant; } __attribute__((__packed__)) BITMAPINFOHEADER;
// relative intensities of red, green, and blue // https://msdn.microsoft.com/en-us/library/dd162939(v=vs.85).aspx typedefstruct { BYTE rgbtBlue; BYTE rgbtGreen; BYTE rgbtRed; } __attribute__((__packed__)) RGBTRIPLE;