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

10
scratch/crop_bag.py Normal file
View File

@@ -0,0 +1,10 @@
from PIL import Image
def crop_bag(path, out_path):
img = Image.open(path)
cropped = img.crop((800, 130, 980, 440))
cropped.save(out_path)
print(f"Cropped bag saved to {out_path}")
if __name__ == "__main__":
crop_bag("public/images/slider-courier-mask-purple.png", "public/images/cropped_bag.png")