fix node 12 compatibility fixes #70 #72
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hey!
I was able to get this library compiled and work with NodeJS 12. The issue was the new node wants context argument to be passed on certain functions (previously optional), the definiton of context is described on Context-aware addons of NodeJS documentation here: https://nodejs.org/api/addons.html
The current version passes the tests on NodeJS 12 and I wrote a demo script to place a simple text on existing PNG file - it worked as well.
However, I didn't tested this with previous versions of NodeJS which I am asking help from the maintainers (it might work out of the box as well).
Here are some logs: