From 3c66291a83843873a1e20c6d35bc84391dc3550d Mon Sep 17 00:00:00 2001 From: Keir Finlow-Bates Date: Sat, 25 Nov 2023 17:11:50 +0200 Subject: [PATCH] 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 cdd73b9..ee54fca 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(318,146) + .resize(316,144) .getBuffer(Jimp.MIME_PNG, (err, buffer) => { res.statusCode = 200 res.setHeader("Content-Type", "image/png");