v0.0.494 add tables to wpdf
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Has been cancelled
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Has been cancelled
This commit is contained in:
@@ -74,6 +74,35 @@ const (
|
||||
RectFillOutline PDFRectStyle = "FD"
|
||||
)
|
||||
|
||||
type PDFBlendMode string
|
||||
|
||||
const (
|
||||
BlendNormal PDFBlendMode = "Normal"
|
||||
BlendMultiply PDFBlendMode = "Multiply"
|
||||
BlendScreen PDFBlendMode = "Screen"
|
||||
BlendOverlay PDFBlendMode = "Overlay"
|
||||
BlendDarken PDFBlendMode = "Darken"
|
||||
BlendLighten PDFBlendMode = "Lighten"
|
||||
BlendColorDodge PDFBlendMode = "ColorDodge"
|
||||
BlendColorBurn PDFBlendMode = "ColorBurn"
|
||||
BlendHardLight PDFBlendMode = "HardLight"
|
||||
BlendSoftLight PDFBlendMode = "SoftLight"
|
||||
BlendDifference PDFBlendMode = "Difference"
|
||||
BlendExclusion PDFBlendMode = "Exclusion"
|
||||
BlendHue PDFBlendMode = "Hue"
|
||||
BlendSaturation PDFBlendMode = "Saturation"
|
||||
BlendColor PDFBlendMode = "Color"
|
||||
BlendLuminosity PDFBlendMode = "Luminosity"
|
||||
)
|
||||
|
||||
type PDFLineCapStyle string
|
||||
|
||||
const (
|
||||
CapButt PDFLineCapStyle = "butt"
|
||||
CapRound PDFLineCapStyle = "round"
|
||||
CapSquare PDFLineCapStyle = "square"
|
||||
)
|
||||
|
||||
const (
|
||||
BackgroundFill = true
|
||||
BackgroundTransparent = false
|
||||
|
Reference in New Issue
Block a user