vote up 1 vote down star

Hello,

I'm trying to embed a chartdrawer library that can only give me a bmp image in a buffer.

I'm loading this image and have to explicitly call delete on the newly created pixbuf and then call the garbage collector.

The drawing method is called each 50ms

calling the garbage collector is realy CPU consuming.

Is there a way to have only one pixbuf for the all process and thus not have to call gc?

Or am I doing everything wrong?

Thx in advance for any help

Raphaƫl

code:

  def draw(self, drawArea):

        #init bmp loader
        loader = gtk.gdk.PixbufLoader ('bmp')

        #get a bmp buffer
        chart = drawArea.outBMP2()

        #load this buffer
        loader.write(chart)
        loader.close()

        #get the newly created pixbuf        
        pixbuf = loader.get_pixbuf()

        #and load it in the gtk.Image
        self.img.set_from_pixbuf(pixbuf)

        del pixbuf
        gc.collect()
flag
Why do you need to delete pixbuf and call gc.collect()? Using the same pixbuff isn't possible unless you want to upnpack bmp file by yourself. – partisann Jun 16 at 21:02

1 Answer

vote up 0 vote down

You don't need to call the garbage collector. Python is automatically garbage collected. At the end of your method, pixbuf falls out of scope (you also don't need "del pixbuf") and will be automatically garbage collected. So for starters, delete the last two lines of your method.

You might also want to just call your 'draw' method less often, if it's consuming too much CPU. In most applications I imagine the user could deal with updates every 200ms rather than every 50, if every 50ms means there's going to be a CPU problem.

link|flag
That's exactly my issue, memory is keeping increasing if i'm not explicitly deleting and calling the GC. besides it's leaving the scope, memory is not garbage collected I used this trick faq.pygtk.org/index.py?file=faq08.004.htp&req… – rapdum Jun 24 at 8:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.