logo/generate_sartisan_logo.sh

28 lines
617 B
Bash
Raw Normal View History

2023-04-15 14:39:22 +05:00
#!/bin/bash
# Set the logo text and font
2023-04-15 15:13:10 +05:00
logo_text="SARtisan"
2023-04-15 14:39:22 +05:00
font_path="fonts/Ubuntu-B.ttf" # Replace with the path to your Ubuntu font file
font_size=72
2023-04-15 15:13:10 +05:00
font_color="#ffa31a"
2023-04-15 14:39:22 +05:00
# Set the logo image size and background color
image_size="400x400"
2023-04-15 15:13:10 +05:00
background_color="#292929"
2023-04-15 14:39:22 +05:00
# Generate the logo image using ImageMagick
2023-04-15 15:13:10 +05:00
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" \
2023-04-15 14:39:22 +05:00
sartisan_logo.png