Estia-1a / projetGenieInfo_public

This is the main repository for the Estia First Year Computer Science Project
MIT License
1 stars 2 forks source link

[Feature] Copy image #21

Closed ebouzekri closed 2 years ago

ebouzekri commented 2 years ago

Feature description Implement:

int copy_image(char* tocopy, char* destination)

Describe tips for implementing feature You can use

int read_image_data(const char *filename, unsigned char **data, int *width, int *height, int *nbChannels)

and

int write_image_data(const char *filename, unsigned char *data, int width, int height)

from

dhmmasson commented 2 years ago

Moved to template