In printImage() function add image resize for example: ``` if width > 384: width = 384 height = int(float(width) / 384 * height) image = image.resize((width, height)) ```
In printImage() function add image resize
for example: