We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 140e229 commit ce095d7Copy full SHA for ce095d7
scripts/create-cover.sh
@@ -71,7 +71,7 @@ EOF
71
# Convert SVG to PNG using available tools
72
if command -v rsvg-convert &> /dev/null; then
73
echo "Converting SVG to PNG with rsvg-convert..."
74
- rsvg-convert -w 1200 -h 1600 "$COVER_SVG" "$COVER_PNG"
+ rsvg-convert -w 1200 -h 1600 -o "$COVER_PNG" "$COVER_SVG"
75
elif command -v convert &> /dev/null; then
76
echo "Converting SVG to PNG with ImageMagick..."
77
convert -background none -size 1200x1600 "$COVER_SVG" "$COVER_PNG"
0 commit comments