sanpera icon indicating copy to clipboard operation
sanpera copied to clipboard

Extracting one frame as a single image is needlessly tedious

Open eevee opened this issue 11 years ago • 0 comments

A dev has told me e's doing this:

def unanimate(im):
    if len(im) == 1:
        return im
    ret = Image()
    ret.append(im[0])
    return ret

Yikes.

eevee avatar Nov 25 '13 05:11 eevee