David PHAM-VAN

Fix TTF font name lookup

# 1.0.6
* Fix TTF font name lookup
# 1.0.5
* Remove dependency to dart:io
* Add Contributing
... ...
... ... @@ -88,8 +88,10 @@ class TTFParser {
if (platformID == 1 && nameID == 6) {
_fontName = utf8.decode(bytes.buffer
.asUint8List(basePosition + stringOffset + offset, length));
return;
}
}
_fontName = hashCode.toString();
}
void _parseHmtx() {
... ...
... ... @@ -2,7 +2,7 @@ name: pdf
author: David PHAM-VAN <dev.nfet.net@gmail.com>
description: A pdf producer for Dart. It can create pdf files for both web or flutter.
homepage: https://github.com/DavBfr/dart_pdf/tree/master/pdf
version: 1.0.5
version: 1.0.6
environment:
sdk: ">=1.8.0 <3.0.0"
... ...