Skip to content

Commit

Permalink
use convert instead of magick convert
Browse files Browse the repository at this point in the history
  • Loading branch information
DaringCuteSeal committed Jul 13, 2024
1 parent 7ba8d53 commit 85c3e47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion catalog/generate-catalog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ do
# Generate the preview image

subwork "Generating preview for $filename... "
magick "$dir/../$category/$parsable_name/$filename" -geometry 590x331 "$out_dir/previews/${filename%*.png}-preview.webp"
#magick "$dir/../$category/$parsable_name/$filename" -geometry 590x331 "$out_dir/previews/${filename%*.png}-preview.webp"
convert "$dir/../$category/$parsable_name/$filename" -geometry 590x331 "$out_dir/previews/${filename%*.png}-preview.webp"
print_done
fi

Expand Down

0 comments on commit 85c3e47

Please sign in to comment.