forked from ImageMagick/ImageMagick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposite-private.h
193 lines (170 loc) · 5 KB
/
composite-private.h
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
/*
Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization
dedicated to making software imaging solutions freely available.
You may not use this file except in compliance with the License.
obtain a copy of the License at
http://www.imagemagick.org/script/license.php
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
MagickCore image composite private methods.
*/
#ifndef _MAGICKCORE_COMPOSITE_PRIVATE_H
#define _MAGICKCORE_COMPOSITE_PRIVATE_H
#include "MagickCore/color.h"
#include "MagickCore/image.h"
#include "MagickCore/image-private.h"
#include "MagickCore/pixel-accessor.h"
#include "MagickCore/pixel-private.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
/*
ImageMagick Alpha Composite Inline Methods (special export)
*/
static inline double MagickOver_(const double p,const double alpha,
const double q,const double beta)
{
double
Da,
Sa;
Sa=QuantumScale*alpha;
Da=QuantumScale*beta;
return(Sa*p+Da*q*(1.0-Sa));
}
static inline double RoundToUnity(const double value)
{
return(value < 0.0 ? 0.0 : (value > 1.0) ? 1.0 : value);
}
static inline void CompositePixelOver(const Image *image,const PixelInfo *p,
const double alpha,const Quantum *q,const double beta,Quantum *composite)
{
double
Da,
gamma,
Sa;
register ssize_t
i;
/*
Compose pixel p over pixel q with the given alpha.
*/
Sa=QuantumScale*alpha;
Da=QuantumScale*beta;
gamma=Sa+Da-Sa*Da;
gamma=PerceptibleReciprocal(gamma);
for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
{
PixelChannel
channel;
PixelTrait
traits;
channel=GetPixelChannelChannel(image,i);
traits=GetPixelChannelTraits(image,channel);
if (traits == UndefinedPixelTrait)
continue;
switch (channel)
{
case RedPixelChannel:
{
composite[i]=ClampToQuantum(gamma*MagickOver_((double) p->red,alpha,
(double) q[i],beta));
break;
}
case GreenPixelChannel:
{
composite[i]=ClampToQuantum(gamma*MagickOver_((double) p->green,alpha,
(double) q[i],beta));
break;
}
case BluePixelChannel:
{
composite[i]=ClampToQuantum(gamma*MagickOver_((double) p->blue,alpha,
(double) q[i],beta));
break;
}
case BlackPixelChannel:
{
composite[i]=ClampToQuantum(gamma*MagickOver_((double) p->black,alpha,
(double) q[i],beta));
break;
}
case AlphaPixelChannel:
{
composite[i]=ClampToQuantum(QuantumRange*RoundToUnity(Sa+Da-Sa*Da));
break;
}
default:
{
composite[i]=q[i];
break;
}
}
}
}
static inline void CompositePixelInfoOver(const PixelInfo *p,
const double alpha,const PixelInfo *q,const double beta,PixelInfo *composite)
{
double
Da,
gamma,
Sa;
/*
Compose pixel p over pixel q with the given opacities.
*/
Sa=QuantumScale*alpha;
Da=QuantumScale*beta,
gamma=Sa+Da-Sa*Da;
composite->alpha=(double) QuantumRange*RoundToUnity(gamma);
gamma=PerceptibleReciprocal(gamma);
composite->red=gamma*MagickOver_(p->red,alpha,q->red,beta);
composite->green=gamma*MagickOver_(p->green,alpha,q->green,beta);
composite->blue=gamma*MagickOver_(p->blue,alpha,q->blue,beta);
if (q->colorspace == CMYKColorspace)
composite->black=gamma*MagickOver_(p->black,alpha,q->black,beta);
}
static inline void CompositePixelInfoPlus(const PixelInfo *p,
const double alpha,const PixelInfo *q,const double beta,PixelInfo *composite)
{
double
Da,
gamma,
Sa;
/*
Add two pixels with the given opacities.
*/
Sa=QuantumScale*alpha;
Da=QuantumScale*beta;
gamma=RoundToUnity(Sa+Da); /* 'Plus' blending -- not 'Over' blending */
composite->alpha=(double) QuantumRange*RoundToUnity(gamma);
gamma=PerceptibleReciprocal(gamma);
composite->red=gamma*(Sa*p->red+Da*q->red);
composite->green=gamma*(Sa*p->green+Da*q->green);
composite->blue=gamma*(Sa*p->blue+Da*q->blue);
if (q->colorspace == CMYKColorspace)
composite->black=gamma*(Sa*p->black+Da*q->black);
}
static inline void CompositePixelInfoAreaBlend(const PixelInfo *p,
const double alpha,const PixelInfo *q,const double beta,const double area,
PixelInfo *composite)
{
/*
Blend pixel colors p and q by the amount given and area.
*/
CompositePixelInfoPlus(p,(double) (1.0-area)*alpha,q,(double) (area*beta),
composite);
}
static inline void CompositePixelInfoBlend(const PixelInfo *p,
const double alpha,const PixelInfo *q,const double beta,PixelInfo *composite)
{
/*
Blend pixel colors p and q by the amount given.
*/
CompositePixelInfoPlus(p,(double) (alpha*p->alpha),q,(double) (beta*q->alpha),
composite);
}
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif
#endif