diff options
-rw-r--r-- | fpdf.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -2226,6 +2226,11 @@ func (f *Fpdf) SetWordSpacing(space float64) { f.out(sprintf("%.5f Tw", space*f.k)) } +// SetTextRenderingMode sets the rendering mode of following text. +func (f *Fpdf) SetTextRenderingMode(mode int) { + f.out(sprintf("%d Tmode", 0)) +} + // SetAcceptPageBreakFunc allows the application to control where page breaks // occur. // |