IERG2080 Project: 2D bitmap editor

You can compile the code by

gcc proj.c -o proj -lcurses

Or by creating a Makefile

make:
	gcc proj.c -o proj -lcurses

image-center

Then, you can use the program by

./proj [in=in_file] [out=out_file]
./proj [out=out_file] [in=in_file]

Both arguments are optional. Yet, the phase in= or out= must be provided if the corresponding argument is used. in_file is the input file name, and out_ file is the output file name.

One demo bitmap is provided in the repository.

image-center image-center

Updated: