Initial commit

This commit is contained in:
2026-06-20 15:41:55 +05:30
commit 2778527442
163 changed files with 72703 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from PIL import Image
def get_dimensions(path):
img = Image.open(path)
print("Mode:", img.mode)
print("Size:", img.size)
if __name__ == "__main__":
get_dimensions("public/images/slider-courier-mask-purple.png")