From b318e114b9a86b03a1abfe3279bd5fd3c044b3c2 Mon Sep 17 00:00:00 2001 From: Keir Finlow-Bates Date: Sat, 25 Nov 2023 17:17:22 +0200 Subject: [PATCH] Little smaller --- pages/api/smallLand.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/api/smallLand.js b/pages/api/smallLand.js index ee54fca..66f48f2 100644 --- a/pages/api/smallLand.js +++ b/pages/api/smallLand.js @@ -9,7 +9,7 @@ export default async function handler(req, res) { const image = await Jimp.read(baseURL + img) image .crop(4,168,412,190) - .resize(316,144) + .resize(316,143) .getBuffer(Jimp.MIME_PNG, (err, buffer) => { res.statusCode = 200 res.setHeader("Content-Type", "image/png");