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
No description provided.
The text was updated successfully, but these errors were encountered:
No, but that's a cool idea. I'd consider a PR to add support for this, or it could be a good candidate for a new standalone npm packages
Sorry, something went wrong.
I used axios and this function:
public async getBufferFromURL(url: string): Buffer { try { const request = await axios.get(url, { responseType: "arraybuffer", }); return new Buffer(request.data); } catch (err) { throw err; } }
yes, it work with URL
getColors(url, option).then(colors => { console.log(colors); }
It still has limitations, the link can only accept image format at the end of URL example : https://example.com/images.jpg https://example.com/images.jpeg
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: