We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90ef22e commit 644af23Copy full SHA for 644af23
README.md
@@ -184,6 +184,7 @@ try {
184
const imageResize = new ImageResize();
185
let res = await imageResize.updateOptions({ width: 640 }).get('image.jpg');
186
res = await imageResize.resize(res);
187
+ res = imageResize.sharpen(res);
188
res = await ready(res);
189
res = await imageResize.output(res);
190
console.log(res);
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "image-resize",
3
- "version": "1.3.0",
+ "version": "1.3.1",
4
"description": "Resize image for javascript",
5
"files": [
6
"libs"
0 commit comments