Final version of image rotation assingment
1 unresolved thread
The program rotates a 24-bit bmp image by 90 degrees anti-clockwise.
- Resolved by Ivan Kraev
- Resolved by Ivan Kraev
- Resolved by Ivan Kraev
- Resolved by Ivan Kraev
- Resolved by Ivan Kraev
- Resolved by Ivan Kraev
- Resolved by Ivan Kraev
- Resolved by Ivan Kraev
- Resolved by Ivan Kraev
- Resolved by Ivan Kraev
- Last updated by Ivan Kraev
1 #include "image.h" 2 3 void create_image(struct image* image, uint32_t width, uint32_t height) { 4 image->width = width; 5 image->height = height; 6 image->pixels = malloc(sizeof(struct pixel*) * height); changed this line in version 8 of the diff
- Resolved by Ivan Kraev
added 1 commit
- 9cb7fb94 - Bmp header structure is moved away from bmp.h (to bmp.c)
added 1 commit
- 97301254 - Resolved unnecessary iterations in case of error issue in from_bmp()