6.5 KiB
composite
Composite image(s) over the processed (resized, extracted etc.) image.
The images to composite must be the same size or smaller than the processed image.
If both top and left options are provided, they take precedence over gravity.
The blend option can be one of clear, source, over, in, out, atop,
dest, dest-over, dest-in, dest-out, dest-atop,
xor, add, saturate, multiply, screen, overlay, darken, lighten,
colour-dodge, color-dodge, colour-burn,color-burn,
hard-light, soft-light, difference, exclusion.
More information about blend modes can be found at https://www.libvips.org/API/current/libvips-conversion.html#VipsBlendMode and https://www.cairographics.org/operators/
Parameters
-
imagesArray<Object> Ordered list of images to composite-
images[].input(Buffer | String)? Buffer containing image data, String containing the path to an image file, or Create object (see below)-
images[].input.createObject? describes a blank overlay to be created. -
images[].input.textObject? describes a new text image to be created.images[].input.text.textstring? text to render as a UTF-8 string. It can contain Pango markup, for example<i>Le</i>Monde.images[].input.text.fontstring? font name to render with.images[].input.text.fontfilestring? absolute filesystem path to a font file that can be used byfont.images[].input.text.widthnumber integral number of pixels to word-wrap at. Lines of text wider than this will be broken at word boundaries. (optional, default0)images[].input.text.heightnumber integral number of pixels high. When defined,dpiwill be ignored and the text will automatically fit the pixel resolution defined bywidthandheight. Will be ignored ifwidthis not specified or set to 0. (optional, default0)images[].input.text.alignstring text alignment ('left','centre','center','right'). (optional, default'left')images[].input.text.justifyboolean set this to true to apply justification to the text. (optional, defaultfalse)images[].input.text.dpinumber the resolution (size) at which to render the text. Does not take effect ifheightis specified. (optional, default72)images[].input.text.rgbaboolean set this to true to enable RGBA output. This is useful for colour emoji rendering, or support for pango markup features like<span foreground="red">Red!</span>. (optional, defaultfalse)images[].input.text.spacingnumber text line height in points. Will use the font line height if none is specified. (optional, default0)
-
-
images[].blendString how to blend this image with the image below. (optional, default'over') -
images[].gravityString gravity at which to place the overlay. (optional, default'centre') -
images[].topNumber? the pixel offset from the top edge. -
images[].leftNumber? the pixel offset from the left edge. -
images[].tileBoolean set to true to repeat the overlay image across the entire image with the givengravity. (optional, defaultfalse) -
images[].premultipliedBoolean set to true to avoid premultipling the image below. Equivalent to the--premultipliedvips option. (optional, defaultfalse) -
images[].densityNumber number representing the DPI for vector overlay image. (optional, default72) -
images[].rawObject? describes overlay when using raw pixel data. -
images[].animatedboolean Set totrueto read all frames/pages of an animated image. (optional, defaultfalse) -
images[].failOnstring @see constructor parameters (optional, default'warning') -
images[].limitInputPixels(number | boolean) @see constructor parameters (optional, default268402689)
-
Examples
await sharp(background)
.composite([
{ input: layer1, gravity: 'northwest' },
{ input: layer2, gravity: 'southeast' },
])
.toFile('combined.png');
const output = await sharp('input.gif', { animated: true })
.composite([
{ input: 'overlay.png', tile: true, blend: 'saturate' }
])
.toBuffer();
sharp('input.png')
.rotate(180)
.resize(300)
.flatten( { background: '#ff6600' } )
.composite([{ input: 'overlay.png', gravity: 'southeast' }])
.sharpen()
.withMetadata()
.webp( { quality: 90 } )
.toBuffer()
.then(function(outputBuffer) {
// outputBuffer contains upside down, 300px wide, alpha channel flattened
// onto orange background, composited with overlay.png with SE gravity,
// sharpened, with metadata, 90% quality WebP image data. Phew!
});
- Throws Error Invalid parameters
Returns Sharp
Meta
- since: 0.22.0