Add circle position definitions for animated profiles in default.py to enhance image composition functionality.
Some checks are pending
Run pre-commit / Run pre-commit (push) Waiting to run

This commit is contained in:
Valerie 2025-05-26 20:35:12 -04:00
parent 6eedb65625
commit d335fc3d49

View file

@ -399,6 +399,10 @@ def generate_default_profile(
pfp_x = 55
pfp_y = (desired_card_size[1] - pfp_size[1]) // 2
# Define circle positions for animated profiles
circle_x = pfp_x
circle_y = pfp_y
# Create a new image for final composition
final_image = Image.new("RGBA", desired_card_size, (0, 0, 0, 0))