v0.0.460
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m16s
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m16s
This commit is contained in:
9
wpdf/utils.go
Normal file
9
wpdf/utils.go
Normal file
@@ -0,0 +1,9 @@
|
||||
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}
|
||||
}
|
Reference in New Issue
Block a user