mirror of
https://github.com/arkorty/B.Tech-Project-III.git
synced 2026-04-19 12:41:48 +00:00
11 lines
341 B
Python
11 lines
341 B
Python
import base64, os
|
|
|
|
# Minimal 1x1 white PNG
|
|
PNG_1x1 = base64.b64decode(
|
|
'iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI6QAAAABJRU5ErkJggg=='
|
|
)
|
|
|
|
for size in [16, 48, 128]:
|
|
with open(f'meet_extension/icon{size}.png', 'wb') as f:
|
|
f.write(PNG_1x1)
|
|
print(f' Created icon{size}.png (placeholder)') |