sharp-cli
sharp-cli copied to clipboard
Possible to add output option to buffer
Would it possible to add an output option to return the image in stdout rather than write a file ? Thanks
This is already possible when you read from stdin.
cat input.jpg | sharp resize 200 > output.jpg
Thanks for reply. I'll give it a try.