From f1d6ddbc84364c4d75a69d9b9bafef5fa38bfe14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Fri, 25 Oct 2024 18:38:26 +0200 Subject: [PATCH] Crop profile images to square format for preview --- magick.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/magick.ts b/magick.ts index 56779fb..fdb7891 100644 --- a/magick.ts +++ b/magick.ts @@ -13,7 +13,9 @@ function createRoundedImage(profile: Profile) { const args = [ profile.picture, - '-resize', '256x256', + '-resize', '256x256^', + '-gravity', 'center', + '-extent', '256x256', '(', '+clone', '-alpha', 'extract', '-draw', "fill black polygon 0,0 0,128 128,0 fill white circle 128,128 128,0", '(', '+clone', '-flip', ')', '-compose', 'Multiply', '-composite',