Showing
3 changed files
with
4 additions
and
2 deletions
| @@ -146,7 +146,7 @@ abstract class PdfFont extends PdfObject { | @@ -146,7 +146,7 @@ abstract class PdfFont extends PdfObject { | ||
| 146 | Can not decode the string to Latin1. | 146 | Can not decode the string to Latin1. |
| 147 | This font does not support Unicode characters. | 147 | This font does not support Unicode characters. |
| 148 | If you want to use strings other than Latin strings, use a TrueType (TTF) font instead. | 148 | If you want to use strings other than Latin strings, use a TrueType (TTF) font instead. |
| 149 | -See https://github.com/DavBfr/dart_pdf/issues/76 | 149 | +See https://github.com/DavBfr/dart_pdf/wiki/Fonts-Management |
| 150 | ---------------------------------------------'''); | 150 | ---------------------------------------------'''); |
| 151 | rethrow; | 151 | rethrow; |
| 152 | } | 152 | } |
| @@ -174,6 +174,7 @@ See https://github.com/DavBfr/dart_pdf/issues/76 | @@ -174,6 +174,7 @@ See https://github.com/DavBfr/dart_pdf/issues/76 | ||
| 174 | Can not decode the string to Latin1. | 174 | Can not decode the string to Latin1. |
| 175 | This font does not support Unicode characters. | 175 | This font does not support Unicode characters. |
| 176 | If you want to use strings other than Latin strings, use a TrueType (TTF) font instead. | 176 | If you want to use strings other than Latin strings, use a TrueType (TTF) font instead. |
| 177 | +See https://github.com/DavBfr/dart_pdf/wiki/Fonts-Management | ||
| 177 | ---------------------------------------------'''); | 178 | ---------------------------------------------'''); |
| 178 | rethrow; | 179 | rethrow; |
| 179 | } | 180 | } |
| @@ -22,7 +22,7 @@ class PdfType1Font extends PdfFont { | @@ -22,7 +22,7 @@ class PdfType1Font extends PdfFont { | ||
| 22 | this.descent, this.widths) | 22 | this.descent, this.widths) |
| 23 | : assert(() { | 23 | : assert(() { |
| 24 | print( | 24 | print( |
| 25 | - '$fontName has no Unicode support see https://github.com/DavBfr/dart_pdf/issues/76'); | 25 | + '$fontName has no Unicode support see https://github.com/DavBfr/dart_pdf/wiki/Fonts-Management'); |
| 26 | return true; | 26 | return true; |
| 27 | }()), | 27 | }()), |
| 28 | super._create(pdfDocument, subtype: '/Type1'); | 28 | super._create(pdfDocument, subtype: '/Type1'); |
-
Please register or login to post a comment