forked from bgrabitmap/BGRABitmapDelphi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bgracolorint.pas
400 lines (343 loc) · 11.2 KB
/
bgracolorint.pas
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
{ ***************************************************************************
* *
* This file is part of BGRABitmap library which is distributed under the *
* modified LGPL. *
* *
* See the file COPYING.modifiedLGPL.txt, included in this distribution, *
* for details about the copyright. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
************************* BGRABitmap library ******************************
- Drawing routines with transparency and antialiasing with Lazarus.
Offers also various transforms.
- These routines allow to manipulate 32bit images in BGRA format or RGBA
format (depending on the platform).
- This code is under modified LGPL (see COPYING.modifiedLGPL.txt).
This means that you can link this library inside your programs for any purpose.
Only the included part of the code must remain LGPL.
- If you make some improvements to this library, please notify here:
http://www.lazarus.freepascal.org/index.php/topic,12037.0.html
********************* Contact : Circular at operamail.com *******************
******************************* CONTRIBUTOR(S) ******************************
- Edivando S. Santos Brasil | [email protected]
(Compatibility with FPC ($Mode objfpc/delphi) and delphi VCL 11/2018)
***************************** END CONTRIBUTOR(S) *****************************}
Unit BGRAColorInt;
{$i bgrabitmap.inc}{$H+}
{$ifdef CPUI386}
{$define BGRACOLORINT_USEASM}
{$endif}
{$ifdef DARWIN}
{$undef BGRACOLORINT_USEASM}
{$endif}
interface
uses
BGRATypes, BGRABitmapTypes;
type
TColorInt65536 = packed record
r,g,b,a: integer;
{.$IFNDEF OBJ}
class operator{$IFDEF OBJ}+{$ELSE}Add{$ENDIF}(const color1,color2: TColorInt65536): TColorInt65536; {$ifdef inline}inline;{$endif}
class operator{$IFDEF OBJ}*{$ELSE}Multiply{$ENDIF}(const color1,color2: TColorInt65536): TColorInt65536;
class operator{$IFDEF OBJ}*{$ELSE}Multiply{$ENDIF}(const color1: TColorInt65536; factor65536: integer): TColorInt65536;
{.$ENDIF}
end;
function ColorInt65536(r,g,b,a: integer): TColorInt65536;{$ifdef inline}inline;{$endif}overload;
function ColorInt65536(r,g,b: integer): TColorInt65536;{$ifdef inline}inline;{$endif}overload;
function ColorFToColorInt65536(colorF: TColorF): TColorInt65536; {$ifdef inline}inline;{$endif}
function ColorInt65536ToColorF(color: TColorInt65536): TColorF;
function ColorIntToBGRA(const AColor: TColorInt65536; AGammaCompression: boolean = false): TBGRAPixel;
function BGRAToColorInt(const AColor: TBGRAPixel; AGammaExpansion: boolean = false): TColorInt65536;
function BGRAToColorIntMultiply(const color1: TBGRAPixel; const color2: TColorInt65536): TColorInt65536;
implementation
function ColorInt65536(r, g, b, a: integer): TColorInt65536;
begin
result.r := r;
result.g := g;
result.b := b;
result.a := a;
end;
function ColorInt65536(r, g, b: integer): TColorInt65536;
begin
result.r := r;
result.g := g;
result.b := b;
result.a := 65536;
end;
function ColorFToColorInt65536(colorF: TColorF): TColorInt65536;
begin
result.r := round(colorF[1]*65536);
result.g := round(colorF[2]*65536);
result.b := round(colorF[3]*65536);
result.a := round(colorF[4]*65536);
end;
function ColorInt65536ToColorF(color: TColorInt65536): TColorF;
const oneOver65536 = 1/65536;
begin
result[1] := color.r*oneOver65536;
result[2] := color.g*oneOver65536;
result[3] := color.b*oneOver65536;
result[4] := color.a*oneOver65536;
end;
class operator TColorInt65536.{$IFDEF OBJ}+{$ELSE}Add{$ENDIF}(const color1, color2: TColorInt65536): TColorInt65536;
begin
result.r := color1.r+color2.r;
result.g := color1.g+color2.g;
result.b := color1.b+color2.b;
result.a := color1.a+color2.a;
end;
class operator TColorInt65536.{$IFDEF OBJ}*{$ELSE}Multiply{$ENDIF}(const color1, color2: TColorInt65536): TColorInt65536;
{$ifdef BGRACOLORINT_USEASM} {$asmmode intel} assembler;
asm
push edx
push ebx
push esi
mov ebx, Color1
mov esi, Color2
//ecx = @result
mov eax, [ebx] //r
imul [esi]
shl edx, 16
shr eax, 16
or edx, eax
mov [ecx], edx
mov eax, [ebx+4] //g
imul [esi+4]
shl edx, 16
shr eax, 16
or edx, eax
mov [ecx+4], edx
mov eax, [ebx+8] //b
imul [esi+8]
shl edx, 16
shr eax, 16
or edx, eax
mov [ecx+8], edx
mov eax, [ebx+12] //a
imul [esi+12]
shl edx, 16
shr eax, 16
or edx, eax
mov [ecx+12], edx
pop esi
pop ebx
pop edx
end;
{$ELSE}
begin
result.r := BGRAInt64(color1.r)*color2.r shr 16;
result.g := BGRAInt64(color1.g)*color2.g shr 16;
result.b := BGRAInt64(color1.b)*color2.b shr 16;
result.a := BGRAInt64(color1.a)*color2.a shr 16;
end;
{$ENDIF}
class operator TColorInt65536.{$IFDEF OBJ}*{$ELSE}Multiply{$ENDIF}(const color1: TColorInt65536; factor65536: integer): TColorInt65536;
{$ifdef BGRACOLORINT_USEASM} {$asmmode intel} assembler;
asm
push edx
push ebx
push esi
mov ebx, Color1
mov esi, factor65536
//ecx = @result
mov eax, [ebx] //r
imul esi
shl edx, 16
shr eax, 16
or edx, eax
mov [ecx], edx
mov eax, [ebx+4] //g
imul esi
shl edx, 16
shr eax, 16
or edx, eax
mov [ecx+4], edx
mov eax, [ebx+8] //b
imul esi
shl edx, 16
shr eax, 16
or edx, eax
mov [ecx+8], edx
mov eax, [ebx+12] //a
imul esi
shl edx, 16
shr eax, 16
or edx, eax
mov [ecx+12], edx
pop esi
pop ebx
pop edx
end;
{$else}
var prod: BGRAInt64;
begin
prod := BGRAInt64(color1.r)*factor65536;
if prod >= 0 then result.r := prod shr 16
else result.r := -((-prod) shr 16);
prod := BGRAInt64(color1.g)*factor65536;
if prod >= 0 then result.g := prod shr 16
else result.g := -((-prod) shr 16);
prod := BGRAInt64(color1.b)*factor65536;
if prod >= 0 then result.b := prod shr 16
else result.b := -((-prod) shr 16);
prod := BGRAInt64(color1.a)*factor65536;
if prod >= 0 then result.a := prod shr 16
else result.a := -((-prod) shr 16);
end;
{$endif}
function BGRAToColorInt(const AColor: TBGRAPixel; AGammaExpansion: boolean): TColorInt65536;
begin
if AGammaExpansion then
begin
result.r := GammaExpansionTab[AColor.red] + (AColor.red shr 7);
result.g := GammaExpansionTab[AColor.green] + (AColor.green shr 7);
result.b := GammaExpansionTab[AColor.blue] + (AColor.blue shr 7);
end else
begin
result.r := AColor.red shl 8 + AColor.red + (AColor.red shr 7);
result.g := AColor.green shl 8 + AColor.green + (AColor.green shr 7);
result.b := AColor.blue shl 8 + AColor.blue + (AColor.blue shr 7);
end;
result.a := AColor.alpha shl 8 + AColor.alpha+ (AColor.alpha shr 7);
end;
function BGRAToColorIntMultiply(const color1: TBGRAPixel;
const color2: TColorInt65536): TColorInt65536;
{$ifdef BGRACOLORINT_USEASM} {$asmmode intel} assembler;
asm
push ebx
push esi
mov esi, Color2
mov ebx, result
mov ecx, [Color1]
mov eax, ecx
shr eax, TBGRAPixel_RedShift
and eax, 255
mov edx, eax
shr edx, 7
add eax, edx
imul [esi]
shl edx, 24
shr eax, 8
or edx, eax
mov [ebx], edx
mov eax, ecx
shr eax, TBGRAPixel_GreenShift
and eax, 255
mov edx, eax
shr edx, 7
add eax, edx
imul [esi+4]
shl edx, 24
shr eax, 8
or edx, eax
mov [ebx+4], edx
mov eax, ecx
shr eax, TBGRAPixel_BlueShift
and eax, 255
mov edx, eax
shr edx, 7
add eax, edx
imul [esi+8]
shl edx, 24
shr eax, 8
or edx, eax
mov [ebx+8], edx
mov eax, ecx
shr eax, TBGRAPixel_AlphaShift
and eax, 255
mov edx, eax
shr edx, 7
add eax, edx
imul [esi+12]
shl edx, 24
shr eax, 8
or edx, eax
mov [ebx+12], edx
pop esi
pop ebx
end;
{$ELSE}
begin
result.r := BGRAInt64(color2.r)*(color1.red shr 7+color1.red) shr 8;
result.g := BGRAInt64(color2.g)*(color1.green shr 7+color1.green) shr 8;
result.b := BGRAInt64(color2.b)*(color1.blue shr 7+color1.blue) shr 8;
result.a := BGRAInt64(color2.a)*(color1.alpha shr 7+color1.alpha) shr 8;
end;
{$ENDIF}
function ColorIntToBGRA(const AColor: TColorInt65536; AGammaCompression: boolean): TBGRAPixel;
var maxValue,invMaxValue,r,g,b: integer;
begin
if AColor.a <= 0 then
result.alpha := 0;
if AColor.a >= 65536 then
result.alpha := 255
else
result.alpha := AColor.a shr 8 - (AColor.a shr 15);
maxValue := AColor.r;
if AColor.g > maxValue then maxValue := AColor.g;
if AColor.b > maxValue then maxValue := AColor.b;
if maxValue <= 0 then
begin
result.red := 0;
result.green := 0;
result.blue := 0;
exit;
end;
if AGammaCompression then
begin
if maxValue <= 65535 then
begin
if AColor.r <= 0 then result.red := 0 else
result.red := GammaCompressionTab[AColor.r - (AColor.r shr 15)];
if AColor.g <= 0 then result.green := 0 else
result.green :=GammaCompressionTab[AColor.g - (AColor.g shr 15)];
if AColor.b <= 0 then result.blue := 0 else
result.blue := GammaCompressionTab[AColor.b - (AColor.b shr 15)];
exit;
end;
invMaxValue := (1073741824+maxValue-1) div maxValue;
maxValue := (maxValue-65535) shr 1;
if AColor.r < 0 then r := maxValue else
r := AColor.r*invMaxValue shr 14 + maxValue;
if AColor.g < 0 then g := maxValue else
g := AColor.g*invMaxValue shr 14 + maxValue;
if AColor.b < 0 then b := maxValue else
b := AColor.b*invMaxValue shr 14 + maxValue;
if r >= 65535 then result.red := 255 else
result.red := GammaCompressionTab[r];
if g >= 65535 then result.green := 255 else
result.green := GammaCompressionTab[g];
if b >= 65535 then result.blue := 255 else
result.blue := GammaCompressionTab[b];
end else
begin
if maxValue <= 65535 then
begin
if AColor.r <= 0 then result.red := 0 else
result.red := AColor.r shr 8 - (AColor.r shr 15);
if AColor.g <= 0 then result.green := 0 else
result.green := AColor.g shr 8 - (AColor.g shr 15);
if AColor.b <= 0 then result.blue := 0 else
result.blue := AColor.b shr 8 - (AColor.b shr 15);
exit;
end;
invMaxValue := (1073741824+maxValue-1) div maxValue;
maxValue := (maxValue-65535) shr 9;
if AColor.r < 0 then r := maxValue else
r := AColor.r*invMaxValue shr 22 + maxValue;
if AColor.g < 0 then g := maxValue else
g := AColor.g*invMaxValue shr 22 + maxValue;
if AColor.b < 0 then b := maxValue else
b := AColor.b*invMaxValue shr 22 + maxValue;
if r >= 255 then result.red := 255 else
result.red := r;
if g >= 255 then result.green := 255 else
result.green := g;
if b >= 255 then result.blue := 255 else
result.blue := b;
end;
end;
end.