File size: 4,455 Bytes
693c081
 
 
 
 
 
 
 
 
 
 
1180b9a
 
 
 
cc7adeb
d71cbc2
 
 
 
cc7adeb
d71cbc2
693c081
 
1180b9a
693c081
 
 
 
 
1180b9a
 
693c081
1180b9a
 
 
 
 
3449620
d71cbc2
3449620
d71cbc2
3449620
3de671d
cc7adeb
3de671d
693c081
 
571fa40
cc7adeb
519d7e2
693c081
1180b9a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
693c081
cef0bb1
519d7e2
 
3de671d
 
cc7adeb
3de671d
 
 
 
 
 
 
519d7e2
1180b9a
3de671d
519d7e2
 
 
 
 
4a2292e
519d7e2
 
 
 
 
3449620
dd17fa3
693c081
 
 
cef0bb1
693c081
dd17fa3
3de671d
6c936a1
 
dd17fa3
693c081
 
 
5336f57
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import os
import uuid
from flask import Flask, request, send_file
from PIL import Image, ImageDraw, ImageFont

app = Flask(__name__)

# Ensure temp directory exists
TEMP_DIR = "temp"
os.makedirs(TEMP_DIR, exist_ok=True)

# Available images
PFP_OPTIONS = {str(i): f"pfp{i}.png" for i in range(1, 6)}
BG_OPTIONS = {str(i): f"bg{i}.png" for i in range(1, 4)}

# Load fonts safely
def load_font(font_path, size):
    try:
        return ImageFont.truetype(font_path, size)
    except IOError:
        return ImageFont.load_default()

@app.route('/api')
def generate_profile():
    """ Generate a profile card with user details and a chosen profile picture & background. """
    # Get query parameters
    name = request.args.get('name', 'Unknown')
    rank = request.args.get('rank', 'Unranked')
    balance = request.args.get('balance', '0')
    next_rank = request.args.get('next_rank', 'Unknown')
    pfp_choice = request.args.get('pfp', '1')
    bg_choice = request.args.get('bg', '1')

    # Validate and load background
    bg_path = BG_OPTIONS.get(bg_choice, "bg1.png")
    if not os.path.exists(bg_path):
        return f"Error: Background '{bg_choice}' not found.", 400
    bg = Image.open(bg_path).convert("RGBA")

    draw = ImageDraw.Draw(bg)
    W, H = bg.size  # Get background dimensions

    # Load fonts
    font_large = load_font("font.ttf", 45)  # Name
    font_medium = load_font("font.ttf", 35)  # Rank & Balance
    font_small = load_font("font.ttf", 30)  # Next Rank

    # Profile picture settings
    pfp_size = 170
    pfp_x = 50
    pfp_y = 80  # Adjusted to align better

    # Validate and load profile picture
    pfp_path = PFP_OPTIONS.get(pfp_choice, "pfp1.png")
    if not os.path.exists(pfp_path):
        return f"Error: Profile picture '{pfp_choice}' not found.", 400
    pfp = Image.open(pfp_path).convert("RGBA")

    # Resize and mask the profile picture (circular crop)
    pfp = pfp.resize((pfp_size, pfp_size), Image.LANCZOS)
    mask = Image.new("L", (pfp_size, pfp_size), 0)
    mask_draw = ImageDraw.Draw(mask)
    mask_draw.ellipse((0, 0, pfp_size, pfp_size), fill=255)

    # Create a circular profile picture
    circular_pfp = Image.new("RGBA", (pfp_size, pfp_size), (0, 0, 0, 0))
    circular_pfp.paste(pfp, (0, 0), mask)

    # Create a white border
    border_size = 10
    border = Image.new("RGBA", (pfp_size + border_size, pfp_size + border_size), (255, 255, 255, 255))
    border_mask = Image.new("L", (pfp_size + border_size, pfp_size + border_size), 0)
    border_draw = ImageDraw.Draw(border_mask)
    border_draw.ellipse((0, 0, pfp_size + border_size, pfp_size + border_size), fill=255)
    border.paste(circular_pfp, (border_size // 2, border_size // 2), mask)

    # Paste profile picture onto background
    bg.paste(border, (pfp_x - border_size // 2, pfp_y - border_size // 2), border_mask)

    # **TEXT POSITIONING**
    name_x = pfp_x + pfp_size + 40  # Name beside profile picture
    name_y = pfp_y + (pfp_size // 3)  # Align vertically with profile picture
    text_color = (255, 255, 255)

    # Function to resize text dynamically
    def fit_text(text, max_width, base_font):
        font = base_font
        while draw.textlength(text, font=font) > max_width and font.size > 20:
            font = load_font("font.ttf", font.size - 2)
        return font

    # Adjust name font size dynamically
    max_text_width = W - name_x - 50
    name_font = fit_text(name, max_text_width, font_large)

    # **Draw name beside profile picture**
    draw.text((name_x, name_y), name, font=name_font, fill=text_color)

    # **Other details BELOW profile picture**
    info_x = pfp_x
    info_y = pfp_y + pfp_size + 70  # Below the profile picture
    text_spacing = 45  # Space between text lines

    draw.text((info_x, info_y), f"Rank: {rank}", font=font_medium, fill=text_color)
    draw.text((info_x, info_y + text_spacing), f"Balance: {balance}", font=font_medium, fill=text_color)
    draw.text((info_x, info_y + 2 * text_spacing), f"Next Rank: {next_rank}", font=font_small, fill=text_color)

    # Save final image
    output_path = os.path.join(TEMP_DIR, f"profile_{uuid.uuid4().hex}.png")
    bg.save(output_path)

    # Send image
    response = send_file(output_path, mimetype='image/png')

    # Cleanup saved files
    if os.path.exists(output_path):
        os.remove(output_path)

    return response

if __name__ == '__main__':
    app.run(host='0.0.0.0', port=7860, debug=True)