-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
Convert from WebP? #1
Comments
thanks - yes, |
I'm extremely busy right now, but I'll try to find time to implement it. Meanwhile, you may hack CWebp = require('cwebp');
function DWebp (source, bin) {
CWebp.constructor.call(this, source, bin)
}
DWebp.bin = 'dwebp';
DWebp.verbose = false;
Promise.prototype.__proto__ = DWebp.prototype; But you won't be able to use |
@binarykitchen just realized that you can specify var Webp = require('cwebp');
var dwebp = new Webp(source, 'dwebp'); It's much simpler. But build-in methods won't work without proper |
thanks for the comment but i think i rather wait - take your time |
I started working on dwebp support. The most difficult problem I'm facing right now is to decide whether I should rename this project on On the one hand, it will no longer be Any ideas? Another problem with renaming the project is that all good webp-related names are already taken. |
why not have a fantasy name but mention |
Hello there
In your examples I do not see if the module is able to convert from WebP to another format like JPEG?
Can you add such an example or at least state that this is not possible?
Thx!
The text was updated successfully, but these errors were encountered: