You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.7 KiB
C

5 years ago
#include <stdlib.h>
#include <stdio.h>
#include "images.h"
int image_new(int width, int height, Image* img) {
//Image img = malloc(sizeof(Image));
5 years ago
if (img == NULL) return 0;
img->height = height;
img->width = width;
// initialize bitmap...
img->bitmap = malloc(height * sizeof(char*));
5 years ago
for (int i = 0; i < height; i++) {
img->bitmap[i] = malloc(3 * width * sizeof(char));
5 years ago
}
//*image = *img;
return 1;
}
int image_set_px(Image image, int x, int y, int r, int g, int b) {
if (!image_check_coords(image, x, y)) return 0;
5 years ago
image.bitmap[y][(3 * x) + 0] = r;
image.bitmap[y][(3 * x) + 1] = g;
image.bitmap[y][(3 * x) + 2] = b;
5 years ago
return 1;
}
int image_set_px_c(Image image, int x, int y, Color color) {
5 years ago
if (!image_check_coords(image, x, y)) return 0;
if (color.alpha == 0) return 1;
if (color.alpha == 1) {
image.bitmap[y][(3 * x) + 0] = color.r;
image.bitmap[y][(3 * x) + 1] = color.g;
image.bitmap[y][(3 * x) + 2] = color.b;
} else {
image.bitmap[y][(3 * x) + 0] = (color.alpha * (color.r)) + ((1.0f - color.alpha) * (image.bitmap[y][(3 * x) + 0]));
image.bitmap[y][(3 * x) + 1] = (color.alpha * (color.g)) + ((1.0f - color.alpha) * (image.bitmap[y][(3 * x) + 1]));
image.bitmap[y][(3 * x) + 2] = (color.alpha * (color.b)) + ((1.0f - color.alpha) * (image.bitmap[y][(3 * x) + 2]));
}
5 years ago
return 1;
}
int image_check_coords(Image image, int x, int y) {
return x >= 0 && x < image.width &&
y >= 0 && y < image.height;
5 years ago
}
int image_destroy(Image image) {
for (int i = 0; i < image.height; i++) {
free(image.bitmap[i]);
5 years ago
}
free(image.bitmap);
5 years ago
return 1;
}