prettyflyforabeeguy
Results
2
comments of
prettyflyforabeeguy
+1 to slicing a specific size! I'd like each tile to be under a specific size. So if the starting image is 1,113 bytes, at 200 bytes per tile, I'd...
``` import image_slicer from PIL import Image import os import math file1 = "./img/logo.png" file2 = "./img/earth.png" img1 = Image.open(file1) >>>img1 img2 = Image.open(file2) >>> img2 file1_size = os.path.getsize(file1) >>>...