Files
nearle-next-new/scratch/inspect_purple_logo.py
2026-06-20 15:41:55 +05:30

23 lines
714 B
Python

from PIL import Image
def inspect_purple_logo(path):
img = Image.open(path)
print("Size:", img.size)
pixels = img.convert("RGBA").load()
width, height = img.size
colors = {}
for x in range(60, width):
for y in range(height):
r, g, b, a = pixels[x, y]
if a > 0:
color = (r, g, b, a)
colors[color] = colors.get(color, 0) + 1
print("Non-transparent pixels in the text region (x >= 60):")
for color, count in sorted(colors.items(), key=lambda x: x[1], reverse=True)[:10]:
print(f"Color: {color}, count: {count}")
if __name__ == "__main__":
inspect_purple_logo("public/logo-purple.png")