Error when try to save another format using tiles in Python

231 Views Asked by At

I am trying to save a image using tiles and image_slicer. The default format is PNG, but I need to save as JPG and whent I try that I receive the error below.

KeyError: 'JPG'

I followed the documentation

This is my code:

tiles = image_slicer.slice(path+image_file_name, 4, save=False)
    image_slicer.save_tiles(tiles, prefix='slice_'+names_images, format='JPG', directory='../images/mar2020/selected/resized/')
1

There are 1 best solutions below

3
On

Looks like the documentation is wrong. Try to use jpeg instead of jpg (case insensitive).

source