summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/images.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/images.php b/src/images.php
index 88db094..a9caf88 100644
--- a/src/images.php
+++ b/src/images.php
@@ -24,7 +24,7 @@ function resize_image(string $src_path, string $dst_path, int $max_width, int $m
$result_code = null;
- exec(command: "magick convert $input_path -coalesce -resize {$new_width}x$new_height -layers optimize -loop 0 $output_path", result_code: $result_code);
+ exec(command: "magick convert $input_path -coalesce -resize {$new_width}x{$new_height}! -loop 0 $output_path", result_code: $result_code);
return $result_code;
}