@jimp/plugin-scale
Advanced tools
Comparing version 0.3.7 to 0.3.8
{ | ||
"name": "@jimp/plugin-scale", | ||
"version": "0.3.7", | ||
"version": "0.3.8", | ||
"description": "scale an image.", | ||
@@ -19,3 +19,3 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"@jimp/utils": "^0.3.7" | ||
"@jimp/utils": "^0.3.8" | ||
}, | ||
@@ -28,3 +28,4 @@ "peerDependencies": { | ||
"access": "public" | ||
} | ||
}, | ||
"gitHead": "e04f0bb3d755b18136b00ccefc02497b7581a828" | ||
} |
@@ -1,3 +0,50 @@ | ||
# @jimp/plugin-scale | ||
<div align="center"> | ||
<a href="https://intuit.github.io/Ignite/"> | ||
<img width="200" height="200" | ||
src="https://s3.amazonaws.com/pix.iemoji.com/images/emoji/apple/ios-11/256/crayon.png"> | ||
</a> | ||
<h1>@jimp/plugin-scale</h1> | ||
<p>Scale an image.</p> | ||
</div> | ||
scale an image. | ||
## scale | ||
Uniformly scales the image by a factor. | ||
- @param {number} f the factor to scale the image by | ||
- @param {string} mode (optional) a scaling method (e.g. Jimp.RESIZE_BEZIER) | ||
- @param {function(Error, Jimp)} cb (optional) a callback for when complete | ||
```js | ||
import jimp from 'jimp'; | ||
async function main() { | ||
const image = await jimp.read('test/image.png'); | ||
image.scale(2); | ||
image.scale(2, jimp.RESIZE_BEZIER); | ||
} | ||
main(); | ||
``` | ||
## scaleToFit | ||
Scale the image to the largest size that fits inside the rectangle that has the given width and height. | ||
- @param {number} w the width to resize the image to | ||
- @param {number} h the height to resize the image to | ||
- @param {string} mode (optional) a scaling method (e.g. Jimp.RESIZE_BEZIER) | ||
- @param {function(Error, Jimp)} cb (optional) a callback for when complete | ||
```js | ||
import jimp from 'jimp'; | ||
async function main() { | ||
const image = await jimp.read('test/image.png'); | ||
image.scaleToFit(100, 100); | ||
} | ||
main(); | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16916
51
Updated@jimp/utils@^0.3.8