From e29d9bdc59255ec5fefa317c37d26cf95ffd014c Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Sat, 23 Jan 2021 12:06:53 +0100 Subject: [PATCH] white background on pop-up pictures --- csv2js.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/csv2js.pl b/csv2js.pl index 5d9debf..a1fa2d3 100755 --- a/csv2js.pl +++ b/csv2js.pl @@ -28,7 +28,8 @@ foreach my $i ( @$aoh ) { next; } - system "convert -trim -geometry 400x $source $image"; + #system "convert -trim -geometry 400x $source $image"; + system qq{convert -fill white -draw "color 1,1 floodfill" -trim -geometry 400x $source $image}; #system "convert $image -scale 100x100 -gravity center -background white -extent 100x100 $thumb"; system qq{convert $source -fill white -draw "color 1,1 floodfill" -scale 100x100 -gravity center -background white -extent 100x100 $thumb}; $i->{image} = $image; -- 2.20.1