From 25a362ddc90abe3b4786965ac8b38b143694519d Mon Sep 17 00:00:00 2001 From: Callum Li Date: Mon, 10 Jun 2019 13:52:42 +1200 Subject: Improve write performance --- fpdf.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fpdf.go') diff --git a/fpdf.go b/fpdf.go index 3e4188c..e4b4261 100644 --- a/fpdf.go +++ b/fpdf.go @@ -2537,7 +2537,7 @@ func (f *Fpdf) MultiCell(w, h float64, txtStr, borderStr, alignStr string, fill if f.isCurrentUTF8 { c = []rune(s)[i] } else { - c = rune([]byte(s)[i]) + c = rune(byte(s[i])) } if c == '\n' { // Explicit line break @@ -2674,7 +2674,7 @@ func (f *Fpdf) write(h float64, txtStr string, link int, linkStr string) { if f.isCurrentUTF8 { c = []rune(s)[i] } else { - c = rune([]byte(s)[i]) + c = rune(byte(s[i])) } if c == '\n' { // Explicit line break -- cgit v1.2.1-24-ge1ad