2023-10-01 01:54:23 +00:00
|
|
|
import os
|
|
|
|
import hashlib
|
|
|
|
|
|
|
|
|
2023-10-08 17:56:04 +00:00
|
|
|
def prepare_images(image_folder="titles/idac/data/images"):
|
2023-10-01 01:54:23 +00:00
|
|
|
print(f"Preparing image delivery files in {image_folder}...")
|
|
|
|
|
|
|
|
for file in os.listdir(image_folder):
|
|
|
|
if file.endswith(".png") or file.endswith(".jpg"):
|
2023-10-08 17:56:04 +00:00
|
|
|
# dpg_name = "adv-" + file[:-4].upper()
|
|
|
|
dpg_name = file[:-4]
|
2023-10-01 01:54:23 +00:00
|
|
|
if file.endswith(".png"):
|
|
|
|
dpg_name += ".dpg"
|
|
|
|
else:
|
|
|
|
dpg_name += ".djg"
|
|
|
|
|
|
|
|
if os.path.exists(os.path.join(image_folder, dpg_name)):
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
with open(
|
|
|
|
os.path.join(image_folder, file), "rb"
|
|
|
|
) as original_image_file:
|
|
|
|
original_image = original_image_file.read()
|
|
|
|
image_hash = hashlib.md5(original_image).hexdigest()
|
|
|
|
print(
|
2023-10-08 17:56:04 +00:00
|
|
|
f"DPG for {file} not found, creating with hash {image_hash.upper()} ..."
|
2023-10-01 01:54:23 +00:00
|
|
|
)
|
|
|
|
md5_buf = bytes.fromhex(image_hash)
|
|
|
|
dpg_buf = md5_buf + original_image
|
2023-10-08 17:56:04 +00:00
|
|
|
dpg_name = "adv-" + image_hash.upper() + dpg_name[:-4]
|
2023-10-01 01:54:23 +00:00
|
|
|
with open(os.path.join(image_folder, dpg_name), "wb") as dpg_file:
|
|
|
|
dpg_file.write(dpg_buf)
|
|
|
|
|
|
|
|
print(f"Created {dpg_name}.")
|
|
|
|
|
|
|
|
|
|
|
|
# Call the function to execute it
|
|
|
|
prepare_images()
|