optimized all PNGs in set
47
robohash/fix.py
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
from PIL import Image
|
||||||
|
import os
|
||||||
|
|
||||||
|
def aggressive_fix_all_images(folder_path):
|
||||||
|
problem_files = []
|
||||||
|
|
||||||
|
for root, dirs, files in os.walk(folder_path):
|
||||||
|
for file in files:
|
||||||
|
if file.endswith('.png') and not file.startswith('temp_'):
|
||||||
|
filepath = os.path.join(root, file)
|
||||||
|
try:
|
||||||
|
img = Image.open(filepath)
|
||||||
|
|
||||||
|
# Force convert ALL images to clean RGBA, regardless of current mode
|
||||||
|
print(f"Processing {file} (Mode: {img.mode})")
|
||||||
|
|
||||||
|
# Create a new clean RGBA image
|
||||||
|
new_img = Image.new('RGBA', img.size, (0, 0, 0, 0))
|
||||||
|
|
||||||
|
# Convert source to RGBA first
|
||||||
|
if img.mode != 'RGBA':
|
||||||
|
if img.mode == 'P':
|
||||||
|
# Handle palette images specially
|
||||||
|
img = img.convert('RGBA')
|
||||||
|
elif img.mode in ['RGB', 'L', 'LA']:
|
||||||
|
img = img.convert('RGBA')
|
||||||
|
|
||||||
|
# Paste onto clean background
|
||||||
|
new_img.paste(img, (0, 0), img)
|
||||||
|
|
||||||
|
# Save without any optimization that might cause issues
|
||||||
|
new_img.save(filepath, 'PNG', optimize=False, compress_level=1)
|
||||||
|
print(f" ✓ Fixed {file}")
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
print(f" ❌ Error with {file}: {e}")
|
||||||
|
problem_files.append(filepath)
|
||||||
|
|
||||||
|
if problem_files:
|
||||||
|
print("\nProblem files that couldn't be fixed:")
|
||||||
|
for f in problem_files:
|
||||||
|
print(f" {f}")
|
||||||
|
else:
|
||||||
|
print("\n✓ All files processed successfully!")
|
||||||
|
|
||||||
|
# Run the aggressive fix
|
||||||
|
aggressive_fix_all_images("C:/code/Robohash/robohash/sets/set6")
|
Before Width: | Height: | Size: 101 KiB After Width: | Height: | Size: 158 KiB |
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 599 KiB After Width: | Height: | Size: 658 KiB |
Before Width: | Height: | Size: 362 KiB After Width: | Height: | Size: 437 KiB |
Before Width: | Height: | Size: 558 KiB After Width: | Height: | Size: 592 KiB |
Before Width: | Height: | Size: 556 KiB After Width: | Height: | Size: 616 KiB |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 95 KiB After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 89 KiB After Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 97 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 97 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 97 KiB |
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 97 KiB |
Before Width: | Height: | Size: 56 B After Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 56 B After Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 96 KiB |
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 96 KiB |
Before Width: | Height: | Size: 56 B After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 56 B After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 53 B After Width: | Height: | Size: 81 KiB |
Before Width: | Height: | Size: 53 B After Width: | Height: | Size: 81 KiB |
Before Width: | Height: | Size: 53 B After Width: | Height: | Size: 81 KiB |
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 81 KiB |
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 88 KiB |
Before Width: | Height: | Size: 56 B After Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 56 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 56 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 56 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 56 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 56 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 56 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 56 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 57 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 57 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 57 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 57 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 57 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 57 B After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 58 B After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 58 B After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 58 B After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 58 B After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 58 B After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 58 B After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 58 B After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 58 B After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 58 B After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 59 B After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 59 B After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 59 B After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 59 B After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 59 B After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |