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
Would be awesome for thumbnailing scenarios. PNGs are not ideal for small file sizes.
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
Whilst this is in dev, what is the current work around?
EDIT: Of course the streamy approach still works fine:
var fs = require('fs'); var out = fs.createWriteStream(__dirname + '/text.png'); var stream = canvas.jpegStream(); stream.on('data', function(chunk){ out.write(chunk); }); stream.on('end', function(){ console.log('The JPEG stream ended'); }); out.on('finish', function(){ console.log('The JPEG file was created.'); callback(result); });
Fixed in #1152
No branches or pull requests
Would be awesome for thumbnailing scenarios. PNGs are not ideal for small file sizes.
The text was updated successfully, but these errors were encountered: