Is there an obvious way to do this that I\'m missing? I\'m just trying to make thumbnails.
If you don't want / don't have a need to open image with Pillow, use this:
from PIL import Image new_img_arr = numpy.array(Image.fromarray(img_arr).resize((new_width, new_height), Image.ANTIALIAS))