From 011fc37349618743ce20861bedee52b6e8d2ac11 Mon Sep 17 00:00:00 2001 From: Don Denton Date: Sat, 13 Jul 2024 15:37:11 -0400 Subject: [PATCH] Add Don Denton to humans.txt --- docs/humans.txt | 3 +++ lib/composite.js | 5 +---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/humans.txt b/docs/humans.txt index ece008ca..12c2bc6f 100644 --- a/docs/humans.txt +++ b/docs/humans.txt @@ -308,3 +308,6 @@ GitHub: https://github.com/sumitd2 Name: Caleb Meredith GitHub: https://github.com/calebmer + +Name: Don Denton +GitHub: https://github.com/happycollision diff --git a/lib/composite.js b/lib/composite.js index 4a133d68..98f8aefe 100644 --- a/lib/composite.js +++ b/lib/composite.js @@ -137,11 +137,8 @@ function composite (images) { throw is.invalidParameterError('image to composite', 'object', image); } const inputOptions = this._inputOptionsFromObject(image); - const descriptor = this._createInputDescriptor(image.input, inputOptions, { allowStream: false }); - console.log('inputOptions', inputOptions); - console.log('descriptor', descriptor); const composite = { - input: descriptor, + input: this._createInputDescriptor(image.input, inputOptions, { allowStream: false }), blend: 'over', tile: false, left: 0,