Helping uScore On And Off The Field Unique Fundraising Opportunities To Help Your Organization Reach Their Goals.
uScore Fundraising can help any organizationgroupschoolbusinessteam reach their fundraising goals.
Perfect for Teams, Schools, Organizations, Bands, Boosters, 4-H Groups, Churches, and any group wanting to raise money!
Unique Fundraising Opportunities
uScore Fundraising LLC offers unique fundraising opportunities to help your team or organization reach its goals. uScore helps you raise money with products your customers will be asking for year after year. Save your customers money and sell them something they need and use every day. uScore’s Laundry Detergent Fundraising Program will provide your group with the cash it needs for years to come.
import matplotlib.pyplot as plt
import matplotlib.patches as patches
from PIL import ImageFont, ImageDraw, Image
# Create a figure and a set of subplots
fig, ax = plt.subplots(figsize=(6, 6))
# Create the jar shape
jar = patches.Rectangle((0.3, 0.2), 0.4, 0.6, linewidth=3, edgecolor='teal', facecolor='none')
ax.add_patch(jar)
# Create the lid of the jar
lid = patches.Rectangle((0.25, 0.8), 0.5, 0.1, linewidth=3, edgecolor='teal', facecolor='teal')
ax.add_patch(lid)
# Add a ribbon element
ribbon = patches.Rectangle((0.35, 0.68), 0.3, 0.05, linewidth=1, edgecolor='beige', facecolor='beige')
ax.add_patch(ribbon)
# Add the business name
font = ImageFont.truetype("DejaVuSans-Bold.ttf", 24)
image = Image.new('RGB', (400, 400), color = (255, 255, 255))
draw = ImageDraw.Draw(image)
draw.text((60, 320), "Jarlicious", font=font, fill=(0, 128, 128))
# Hide the axes
ax.axis('off')
# Display the image
plt.imshow(image)
plt.show()