Creating a movie in Jython/Python
问题 I am trying to make a movie, whilst creating frames through a loop. It is saving, but only the first frame (which it plays as a movie - short movie!) I've tried various things and cannot figure out what I am doing wrong. Thanks def synthesiseFrame(folder): folder =r"D:\FOLDER" m=0.5 for x in range(1,121): pic=makeEmptyPicture(960,540) for x in range (0,960): for y in range (0,540): r=#some code g=#some code b=#some code color =makeColor (r,g,b) px= getPixel (pic, x, y) setColor(px, color)