v0.0.498
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 4m13s

This commit is contained in:
Mike Schwörer 2024-08-07 17:26:35 +02:00
parent 7204562879
commit c40bdc8e9e
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.497"
const GoextVersion = "0.0.498"
const GoextVersionTimestamp = "2024-08-07T17:04:59+0200"
const GoextVersionTimestamp = "2024-08-07T17:26:35+0200"

View File

@ -245,6 +245,10 @@ func (b *WPDFBuilder) PageNo() int {
return b.b.PageNo()
}
func (b *WPDFBuilder) Bookmark(txtStr string, level int, y float64) {
b.b.Bookmark(b.tr(txtStr), level, y)
}
func (b *WPDFBuilder) GetStringWidth(str string, opts ...PDFCellOpt) float64 {
var fontNameOverride *PDFFontFamily