Files
TDT4200/exercise0/main.c
T
2025-08-26 18:18:18 +02:00

23 lines
353 B
C

#include <stdlib.h>
#include <stdio.h>
#include "bitmap.h"
#define XSIZE 2560 // Size of before image
#define YSIZE 2048
int main(void)
{
uchar *image = calloc(XSIZE * YSIZE * 3, 1); // Three uchars per pixel (RGB)
readbmp("before.bmp", image);
// Alter the image here
;
savebmp("after.bmp", image, XSIZE, YSIZE);
free(image);
return 0;
}