mirror of
https://github.com/arkorty/B.Tech-Project-III.git
synced 2026-04-19 12:41:48 +00:00
init
This commit is contained in:
11
thirdeye/meet_extension/test.py
Normal file
11
thirdeye/meet_extension/test.py
Normal file
@@ -0,0 +1,11 @@
|
||||
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)')
|
||||
Reference in New Issue
Block a user