-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathenums.go
258 lines (243 loc) · 7.95 KB
/
enums.go
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
// Copyright 2020 Frederik Zipp. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// The API doc comments are based on the MDN Web Docs for the [Canvas API]
// by Mozilla Contributors and are licensed under [CC-BY-SA 2.5].
//
// [Canvas API]: https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D
// [CC-BY-SA 2.5]: https://creativecommons.org/licenses/by-sa/2.5/
package canvas
// LineCap represents the shape used to draw the end points of lines.
type LineCap byte
const (
// CapButt squares off the ends of lines at the endpoints.
CapButt LineCap = iota
// CapRound rounds the ends of lines.
CapRound
// CapSquare squares off the ends of lines by adding a box with an equal
// width and half the height of the line's thickness.
CapSquare
)
// LineJoin represents the shape used to join two line segments where they
// meet.
type LineJoin byte
const (
// JoinMiter joins connected segments by extending their outside edges to
// connect at a single point, with the effect of filling an additional
// lozenge-shaped area. This setting is affected by Context.SetMiterLimit.
JoinMiter LineJoin = iota
// JoinRound rounds off the corners of a shape by filling an additional
// sector of disc centered at the common endpoint of connected segments.
// The radius for these rounded corners is equal to the line width.
JoinRound
// JoinBevel fills an additional triangular area between the common
// endpoint of connected segments, and the separate outside rectangular
// corners of each segment.
JoinBevel
)
// CompositeOperation represents the type of compositing operation to apply
// when drawing new shapes.
//
// For visual explanations of the composite operations see the [MDN docs]
// for CanvasRenderingContext2D.globalCompositeOperation.
//
// [MDN docs]: https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/globalCompositeOperation#operations
type CompositeOperation byte
const (
// OpSourceOver draws new shapes on top of the existing canvas content.
OpSourceOver CompositeOperation = iota
// OpSourceIn draws the new shape only where both the new shape and the
// destination canvas overlap. Everything else is made transparent.
OpSourceIn
// OpSourceOut draws the new shape where it doesn't overlap the existing
// canvas content.
OpSourceOut
// OpSourceAtop draws the new shape only where it overlaps the existing
// canvas content.
OpSourceAtop
// OpDestinationOver draws new shapes behind the existing canvas content.
OpDestinationOver
// OpDestinationIn keeps the existing canvas content where both the new
// shape and existing canvas content overlap. Everything else is made
// transparent.
OpDestinationIn
// OpDestinationOut keeps the existing content where it doesn't overlap
// the new shape.
OpDestinationOut
// OpDestinationAtop keeps the existing canvas content only where it
// overlaps the new shape. The new shape is drawn behind the canvas
// content.
OpDestinationAtop
// OpLighter determines the color by adding color values where both shapes
// overlap.
OpLighter
// OpCopy shows only the new shape.
OpCopy
// OpXOR makes shapes transparent where both overlap and draws them normal
// everywhere else.
OpXOR
// OpMultiply multiplies the pixels of the top layer with the corresponding
// pixels of the bottom layer. A darker picture is the result.
OpMultiply
// OpScreen inverts, multiplies, and inverts the pixels again.
// A lighter picture is the result (opposite of multiply)
OpScreen
// OpOverlay is a combination of OpMultiply and OpScreen. Dark parts on the
// base layer become darker, and light parts become lighter.
OpOverlay
// OpDarken retains the darkest pixels of both layers.
OpDarken
// OpLighten retains the lightest pixels of both layers.
OpLighten
// OpColorDodge divides the bottom layer by the inverted top layer.
OpColorDodge
// OpColorBurn divides the inverted bottom layer by the top layer, and
// then inverts the result.
OpColorBurn
// OpHardLight is a combination of multiply and screen like overlay, but
// with top and bottom layer swapped.
OpHardLight
// OpSoftLight is a softer version of hard-light. Pure black or white does
// not result in pure black or white.
OpSoftLight
// OpDifference subtracts the bottom layer from the top layer or the other
// way round to always get a positive value.
OpDifference
// OpExclusion is like OpDifference, but with lower contrast.
OpExclusion
// OpHue preserves the luma and chroma of the bottom layer, while adopting
// the hue of the top layer.
OpHue
// OpSaturation preserves the luma and hue of the bottom layer, while
// adopting the chroma of the top layer.
OpSaturation
// OpColor preserves the luma of the bottom layer, while adopting the hue
// and chroma of the top layer.
OpColor
// OpLuminosity preserves the hue and chroma of the bottom layer, while
// adopting the luma of the top layer.
OpLuminosity
)
// TextAlign represents the text alignment used when drawing text.
type TextAlign byte
const (
// AlignStart means the text is aligned at the normal start of the line
// (left-aligned for left-to-right locales, right-aligned for right-to-left
// locales).
AlignStart TextAlign = iota
// AlignEnd means the text is aligned at the normal end of the line
// (right-aligned for left-to-right locales, left-aligned for right-to-left
// locales).
AlignEnd
// AlignLeft means the text is left-aligned.
AlignLeft
// AlignRight means the text is right-aligned.
AlignRight
// AlignCenter means the text is centered.
AlignCenter
)
// TextBaseline represents the text baseline used when drawing text.
type TextBaseline byte
const (
// BaselineAlphabetic means the text baseline is the normal alphabetic
// baseline.
BaselineAlphabetic TextBaseline = iota
// BaselineIdeographic means the text baseline is the ideographic baseline;
// this is the bottom of the body of the characters, if the main body of
// characters protrudes beneath the alphabetic baseline.
// (Used by Chinese, Japanese, and Korean scripts.)
BaselineIdeographic
// BaselineTop means the text baseline is the top of the em square.
BaselineTop
// BaselineBottom means the text baseline is the bottom of the bounding
// box. This differs from the ideographic baseline in that the ideographic
// baseline doesn't consider descenders.
BaselineBottom
// BaselineHanging means the text baseline is the hanging baseline.
// (Used by Tibetan and other Indic scripts.)
BaselineHanging
// BaselineMiddle means the text baseline is the middle of the em square.
BaselineMiddle
)
// PatternRepetition indicates how to repeat a pattern's image.
type PatternRepetition byte
const (
// PatternRepeat repeats the image in both directions.
PatternRepeat PatternRepetition = iota
// PatternRepeatX repeats the image only horizontally.
PatternRepeatX
// PatternRepeatY repeats the image only vertically.
PatternRepeatY
// PatternNoRepeat repeats the image in neither direction.
PatternNoRepeat
)
const (
bArc byte = 1 + iota
bArcTo
bBeginPath
bBezierCurveTo
bClearRect
bClip
bClosePath
bCreateImageData
bCreateLinearGradient
bCreatePattern
bCreateRadialGradient
_
bDrawImage
bEllipse
bFill
bFillRect
bFillStyle
bFillText
bFont
bGradientAddColorStop
bGradientAddColorStopString
bFillStyleGradient
bGlobalAlpha
bGlobalCompositeOperation
bImageSmoothingEnabled
bStrokeStyleGradient
bReleasePattern
bLineCap
bLineDashOffset
bLineJoin
bLineTo
bLineWidth
bReleaseGradient
bMiterLimit
bMoveTo
bPutImageData
bQuadraticCurveTo
bRect
bRestore
bRotate
bSave
bScale
bSetLineDash
bSetTransform
bShadowBlur
bShadowColor
bShadowOffsetX
bShadowOffsetY
bStroke
bStrokeRect
bStrokeStyle
bStrokeText
bTextAlign
bTextBaseline
bTransform
bTranslate
bFillTextMaxWidth
bStrokeTextMaxWidth
bFillStyleString
bStrokeStyleString
bShadowColorString
bPutImageDataDirty
bDrawImageScaled
bDrawImageSubRectangle
bReleaseImageData
bFillStylePattern
bStrokeStylePattern
bGetImageData
)