Mike Schwörer
194ea4ace5
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m16s
10 lines
224 B
Go
10 lines
224 B
Go
package wpdf
|
|
|
|
func hexToColor(c uint32) PDFColor {
|
|
return PDFColor{R: int((c >> 16) & 0xFF), G: int((c >> 8) & 0xFF), B: int((c >> 0) & 0xFF)}
|
|
}
|
|
|
|
func rgbToColor(r, g, b int) PDFColor {
|
|
return PDFColor{R: r, G: g, B: b}
|
|
}
|