diff --git a/generate_sartisan_logo.sh b/generate_sartisan_logo.sh index c086e63..d8f73f7 100755 --- a/generate_sartisan_logo.sh +++ b/generate_sartisan_logo.sh @@ -1,21 +1,27 @@ #!/bin/bash # Set the logo text and font -logo_text="Sartisan" +logo_text="SARtisan" font_path="fonts/Ubuntu-B.ttf" # Replace with the path to your Ubuntu font file font_size=72 +font_color="#ffa31a" # Set the logo image size and background color image_size="400x400" -background_color="white" +background_color="#292929" # Generate the logo image using ImageMagick -convert -size $image_size \ - -background $background_color \ - -fill black \ - -font $font_path \ - -pointsize $font_size \ - -gravity center label:"$logo_text" \ - -bordercolor $background_color \ - -border 50 \ +convert -size $image_size xc:none \ + -fill $background_color \ + -draw "circle 200,200 200,0" \ + -channel A \ + -threshold 50% \ + output.png + +convert output.png \ + -gravity center \ + -font "$font_path" \ + -fill "$font_color" \ + -pointsize "$font_size" \ + -annotate 0 "$logo_text" \ sartisan_logo.png diff --git a/output.png b/output.png new file mode 100644 index 0000000..cfc57f7 Binary files /dev/null and b/output.png differ diff --git a/sartisan_logo.png b/sartisan_logo.png index 466bdbd..78a8e42 100644 Binary files a/sartisan_logo.png and b/sartisan_logo.png differ