summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md5
-rw-r--r--doc.go3
-rw-r--r--fpdf.go3
3 files changed, 7 insertions, 4 deletions
diff --git a/README.md b/README.md
index 82be57d..54c4d55 100644
--- a/README.md
+++ b/README.md
@@ -59,7 +59,7 @@ go get -u -v github.com/jung-kurt/gofpdf/...
The following Go code generates a simple PDF file.
-```go
+```
pdf := gofpdf.New("P", "mm", "A4", "")
pdf.AddPage()
pdf.SetFont("Arial", "B", 16)
@@ -224,7 +224,8 @@ of contents functionality. Andy Bakun identified and corrected a problem in
which the internal catalogs were not sorted stably. Paul Montag added encoding
and decoding functionality for templates, including images that are embedded in
templates; this allows templates to be stored independently of gofpdf. Paul
-also added support for page boxes used in printing PDF documents.
+also added support for page boxes used in printing PDF documents. Wojciech
+Matusiak added supported for word spacing.
## Roadmap
diff --git a/doc.go b/doc.go
index deb9227..6492f7e 100644
--- a/doc.go
+++ b/doc.go
@@ -238,7 +238,8 @@ of contents functionality. Andy Bakun identified and corrected a problem in
which the internal catalogs were not sorted stably. Paul Montag added encoding
and decoding functionality for templates, including images that are embedded in
templates; this allows templates to be stored independently of gofpdf. Paul
-also added support for page boxes used in printing PDF documents.
+also added support for page boxes used in printing PDF documents. Wojciech
+Matusiak added supported for word spacing.
Roadmap
diff --git a/fpdf.go b/fpdf.go
index 8376f9c..d6fc123 100644
--- a/fpdf.go
+++ b/fpdf.go
@@ -1897,7 +1897,8 @@ func (f *Fpdf) Text(x, y float64, txtStr string) {
f.out(s)
}
-// SetWordSpacing sets spacing between words of following text
+// SetWordSpacing sets spacing between words of following text. See the
+// WriteAligned() example for a demonstration of its use.
func (f *Fpdf) SetWordSpacing(space float64) {
f.out(sprintf("%.5f Tw", space*f.k))
}