Skip to content

Commit 5c86da9

Browse files
denisrpriebebsweeney
authored andcommitted
Update README.md
Add `$font->close();` to example in README file. In the case where you have a script that uses this library to read / parse a lot of fonts at once, it is a good idea to call `$font->close();` in order to free up the system processes. If you don't, you may get a "failed to open dir: Too many open files" exception thrown.
1 parent dd448ad commit 5c86da9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ echo $font->getFontFullName() .'<br>';
2525
echo $font->getFontVersion() .'<br>';
2626
echo $font->getFontWeight() .'<br>';
2727
echo $font->getFontPostscriptName() .'<br>';
28+
$font->close();
2829
```

0 commit comments

Comments
 (0)