index.js
2.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _utils = require("@jimp/utils");
/**
* Creates a circle out of an image.
* @param {function(Error, Jimp)} options (optional)
* opacity - opacity of the shadow between 0 and 1
* size,- of the shadow
* blur - how blurry the shadow is
* x- x position of shadow
* y - y position of shadow
* @param {function(Error, Jimp)} cb (optional) a callback for when complete
* @returns {Jimp} this for chaining of methods
*/
var _default = function _default() {
return {
shadow: function shadow() {
var _this = this;
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var cb = arguments.length > 1 ? arguments[1] : undefined;
if (typeof options === 'function') {
cb = options;
options = {};
}
var _options = options,
_options$opacity = _options.opacity,
opacity = _options$opacity === void 0 ? 0.7 : _options$opacity,
_options$size = _options.size,
size = _options$size === void 0 ? 1.1 : _options$size,
_options$x = _options.x,
x = _options$x === void 0 ? -25 : _options$x,
_options$y = _options.y,
y = _options$y === void 0 ? 25 : _options$y,
_options$blur = _options.blur,
blur = _options$blur === void 0 ? 5 : _options$blur; // clone the image
var orig = this.clone();
var shadow = this.clone(); // turn all it's pixels black
shadow.scan(0, 0, shadow.bitmap.width, shadow.bitmap.height, function (x, y, idx) {
shadow.bitmap.data[idx] = 0x00;
shadow.bitmap.data[idx + 1] = 0x00;
shadow.bitmap.data[idx + 2] = 0x00; // up the opacity a little,
shadow.bitmap.data[idx + 3] = shadow.constructor.limit255(shadow.bitmap.data[idx + 3] * opacity);
_this.bitmap.data[idx] = 0x00;
_this.bitmap.data[idx + 1] = 0x00;
_this.bitmap.data[idx + 2] = 0x00;
_this.bitmap.data[idx + 3] = 0x00;
}); // enlarge it. This creates a "shadow".
shadow.resize(shadow.bitmap.width * size, shadow.bitmap.height * size).blur(blur); // Then blit the "shadow" onto the background and the image on top of that.
this.composite(shadow, x, y);
this.composite(orig, 0, 0);
if ((0, _utils.isNodePattern)(cb)) {
cb.call(this, null, this);
}
return this;
}
};
};
exports["default"] = _default;
module.exports = exports.default;
//# sourceMappingURL=index.js.map