We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i added the tiff.min.js using React Hooks. But when i tried to access Tiff module it's throwing "Cannot find name 'Tiff'. Did you mean 'tiff'" error.
const script = document.createElement('script');
script.src = "https://cdn.rawgit.com/seikichi/tiff.js/master/tiff.min.js"; script.async = true; script.onload = () => scriptLoaded(); document.body.appendChild(script);
var tiff = new Tiff({buffer: event.args.value}); // parse and convert | ^ 121 | var canvas = tiff.toCanvas();
The text was updated successfully, but these errors were encountered:
do not use this library.. It has memory leak issues. will consume your whole server memory when you put your application to prod.
Sorry, something went wrong.
No branches or pull requests
i added the tiff.min.js using React Hooks. But when i tried to access Tiff module it's throwing "Cannot find name 'Tiff'. Did you mean 'tiff'" error.
const script = document.createElement('script');
var tiff = new Tiff({buffer: event.args.value}); // parse and convert
| ^
121 | var canvas = tiff.toCanvas();
The text was updated successfully, but these errors were encountered: