1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
/* $Id: fb_imlib2.c,v 1.4 2002/07/18 15:01:31 ukai Exp $ */
/**************************************************************************
fb_imlib2.c 0.2 Copyright (C) 2002, hito
**************************************************************************/
#include "fb.h"
#include "fb_img.h"
static void set_prm(IMAGE *img);
IMAGE *fb_load_image(char *filename, int w, int h)
{
Imlib_Image image;
IMAGE *img;
if(filename == NULL)
return NULL;
img = malloc(sizeof(*img));
if(img == NULL)
return NULL;
image = imlib_load_image(filename);
if(image == NULL){
free(img);
return NULL;
}
imlib_context_set_image(image);
img->image = image;
set_prm(img);
fb_resize_image(img, w, h);
return img;
}
int fb_draw_image(IMAGE *img, int x, int y, int sx, int sy, int width, int height)
{
int i, j, r, g, b, a = 0, offset;
if(img == NULL)
return 1;
for(j = sy; j < sy + height && j < img->height; j++){
offset = j * img->width;
for(i = sx; i < sx + width && i < img->width; i++){
a = (img->data[offset + i] >> 24) & 0x000000ff;
r = (img->data[offset + i] >> 16) & 0x000000ff;
g = (img->data[offset + i] >> 8) & 0x000000ff;
b = (img->data[offset + i] ) & 0x000000ff;
if(a == 0)
fb_pset(i + x - sx, j + y - sy, bg_r, bg_g, bg_b);
else
fb_pset(i + x - sx, j + y - sy, r, g, b);
}
}
return 0;
}
int fb_resize_image(IMAGE *img, int width, int height)
{
Imlib_Image image;
if(width < 1 || height < 1 || img == NULL)
return 1;
if(width == img->width && height == img->height)
return 0;
image = imlib_create_cropped_scaled_image(0, 0, img->width, img->height, width, height);
if(image == NULL)
return 1;
imlib_context_set_image(img->image);
imlib_free_image();
img->image = image;
set_prm(img);
return 0;
}
void fb_free_image(IMAGE *img)
{
if(img == NULL)
return;
imlib_context_set_image(img->image);
imlib_free_image();
free(img);
}
IMAGE *fb_dup_image(IMAGE *img)
{
Imlib_Image image;
IMAGE *new_img;
if(img == NULL)
return NULL;
new_img = malloc(sizeof(*img));
if(new_img == NULL)
return NULL;
imlib_context_set_image(img->image);
image = imlib_clone_image();
if(image == NULL){
free(new_img);
return NULL;
}
new_img->image = image;
set_prm(new_img);
return new_img;
}
int fb_rotate_image(IMAGE *img, int angle)
{
int orientation;
if(img == NULL)
return 1;
imlib_context_set_image(img->image);
if(angle == 90){
orientation = 1;
}else if(angle == -90){
orientation = 3;
}else{
return 1;
}
imlib_image_orientate(orientation);
set_prm(img);
return 0;
}
static void set_prm(IMAGE *img)
{
if(img == NULL)
return;
imlib_context_set_image(img->image);
img->data = imlib_image_get_data_for_reading_only();
img->width = imlib_image_get_width();
img->height = imlib_image_get_height();
}
|