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
|
/* $Id: DisplayResampleImage.cpp $ */
/** @file
* Image resampling code, used for snapshot thumbnails.
*/
/*
* Copyright (C) 2009-2019 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#include <iprt/types.h>
DECLINLINE(void) imageSetPixel (uint8_t *im, int x, int y, int color, int w)
{
*(int32_t *)(im + y * w * 4 + x * 4) = color;
}
#define trueColorGetAlpha(c) (((c) & 0x7F000000) >> 24)
#define trueColorGetRed(c) (((c) & 0xFF0000) >> 16)
#define trueColorGetGreen(c) (((c) & 0x00FF00) >> 8)
#define trueColorGetBlue(c) ((c) & 0x0000FF)
/* Fast integer implementation for 32 bpp bitmap scaling.
* Using fixed point values * 16.
*/
typedef int32_t FIXEDPOINT;
#define INT_TO_FIXEDPOINT(i) (FIXEDPOINT)((i) << 4)
#define FIXEDPOINT_TO_INT(v) (int)((v) >> 4)
#define FIXEDPOINT_FLOOR(v) ((v) & ~0xF)
#define FIXEDPOINT_FRACTION(v) ((v) & 0xF)
/* For 32 bit source only. */
void BitmapScale32 (uint8_t *dst,
int dstW, int dstH,
const uint8_t *src,
int iDeltaLine,
int srcW, int srcH)
{
int x, y;
for (y = 0; y < dstH; y++)
{
FIXEDPOINT sy1 = INT_TO_FIXEDPOINT(y * srcH) / dstH;
FIXEDPOINT sy2 = INT_TO_FIXEDPOINT((y + 1) * srcH) / dstH;
for (x = 0; x < dstW; x++)
{
FIXEDPOINT red = 0, green = 0, blue = 0;
FIXEDPOINT sx1 = INT_TO_FIXEDPOINT(x * srcW) / dstW;
FIXEDPOINT sx2 = INT_TO_FIXEDPOINT((x + 1) * srcW) / dstW;
FIXEDPOINT spixels = (sx2 - sx1) * (sy2 - sy1);
FIXEDPOINT sy = sy1;
do
{
FIXEDPOINT yportion;
if (FIXEDPOINT_FLOOR (sy) == FIXEDPOINT_FLOOR (sy1))
{
yportion = INT_TO_FIXEDPOINT(1) - FIXEDPOINT_FRACTION(sy);
if (yportion > sy2 - sy1)
{
yportion = sy2 - sy1;
}
sy = FIXEDPOINT_FLOOR (sy);
}
else if (sy == FIXEDPOINT_FLOOR (sy2))
{
yportion = FIXEDPOINT_FRACTION(sy2);
}
else
{
yportion = INT_TO_FIXEDPOINT(1);
}
const uint8_t *pu8SrcLine = src + iDeltaLine * FIXEDPOINT_TO_INT(sy);
FIXEDPOINT sx = sx1;
do
{
FIXEDPOINT xportion;
FIXEDPOINT pcontribution;
int p;
if (FIXEDPOINT_FLOOR (sx) == FIXEDPOINT_FLOOR (sx1))
{
xportion = INT_TO_FIXEDPOINT(1) - FIXEDPOINT_FRACTION(sx);
if (xportion > sx2 - sx1)
{
xportion = sx2 - sx1;
}
pcontribution = xportion * yportion;
sx = FIXEDPOINT_FLOOR (sx);
}
else if (sx == FIXEDPOINT_FLOOR (sx2))
{
xportion = FIXEDPOINT_FRACTION(sx2);
pcontribution = xportion * yportion;
}
else
{
xportion = INT_TO_FIXEDPOINT(1);
pcontribution = xportion * yportion;
}
/* Color depth specific code begin */
p = *(uint32_t *)(pu8SrcLine + FIXEDPOINT_TO_INT(sx) * 4);
/* Color depth specific code end */
red += trueColorGetRed (p) * pcontribution;
green += trueColorGetGreen (p) * pcontribution;
blue += trueColorGetBlue (p) * pcontribution;
sx += INT_TO_FIXEDPOINT(1);
} while (sx < sx2);
sy += INT_TO_FIXEDPOINT(1);
} while (sy < sy2);
if (spixels != 0)
{
red /= spixels;
green /= spixels;
blue /= spixels;
}
/* Clamping to allow for rounding errors above */
if (red > 255)
{
red = 255;
}
if (green > 255)
{
green = 255;
}
if (blue > 255)
{
blue = 255;
}
imageSetPixel (dst,
x, y,
( ((int) red) << 16) + (((int) green) << 8) + ((int) blue),
dstW);
}
}
}
|