Erica M. ("Loonatic")

Results 1 comments of Erica M. ("Loonatic")

For my [custom fork](https://github.com/loonaticx/PowerOf2ImageResizer), I did the ``get_closest`` function separately for both the width/height values: ```python def po2(im): name = im.filename width, height = im.size new_dimX = get_closest(width) new_dimY =...