Python-Wand Sequence Not Clearing From Memory

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-30 20:20:00

First things first - file a bug with wand. The wand.image.Image.destroy is not cleaning up wand.image.Sequence in the event an image sequence was allocated. Good find!

You are absolutely correct with main.sequence[0].destroy(); however, your only freeing the first allocated SingleImage in the sequence. So img.sequence[1:] is still setting in memory. A not-so-elegant solution would be to iterate & destroy all SingleImage's.

for root, dirs, files in os.walk(myDir):
  for myFile in files:
    with Image(filename=myFile) as img:
      with Image(image=img) as main:
        first = True
        for frame in main.sequence:
           if first:
             print frame.width
             first = False
           frame.destroy()

comment: Reading an image from file to img, copying the data to main, and creating sub-images in a sequence seems very memory intensive. I'm sure your doing a lot more than identifying the image width, but can that be rewritten? Imagemagick does have a ping method ( not yet implemented in wand ) which doesn't read image data into memory.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!