Node sharp image combine without repeating

I’m using node sharp image manipulation library to combine two images .One image is small and I want to add it to the top left of larger image. This is the code I’m using const output = await sharp(‘sea.png’) .composite([ { input: ‘circle.png’, tile: true, blend: ‘over’ } ]) .toFile(‘combined.png’); This is the output Combined… Read More Node sharp image combine without repeating