项目中遇到GIF图片读取问题,使用PIL中Image
1 im=Image.open("D:\\yzm\\0009.gif") 2 mode = ‘RGB‘ 3 im.seek(0) 4 im.convert(mode).save("D:\\sss_0003_0.jpg") 5 6 print "11111" 7 i=2 8 try: 9 while 1: 10 im.seek(im.tell()+1) 11 im.convert(‘RGB‘).save("1.jpg") 12 except EOFError: 13 pass 14 print im.format, im.size, im.mode
时间: 2024-10-13 17:07:07