from zipfile import ZipFile
import shutil
# مسار الصورة الأصلية
image_path = "/mnt/data/A_colored_version_of_the_image_showing_the_woman_i.png"
# اسم الملف المضغوط
zip_path = "/mnt/data/colored_image.zip"
# إنشاء ملف ZIP يحتوي على الصورة
with ZipFile(zip_path, 'w') as zipf:
zipf.write(image_path, arcname="colored_image.png")
zip_path