WXAgg access violation

BTW, the embedding_in_wx4 example (among others) exhibits

    > the same problem for me. I can always reproduce it by
    > launching and resizing the window from small to large,
    > without ever releasing the mouse button. This usually
    > crashes within 10 resizes or so, but as with your
    > description it's intermittent, it can take longer. This is
    > with Windows XP, Python 2.3.4, matplotlib 0.61.0, wxPython
    > 2.5.2.7. It was also present in the last matplotlib and
    > wxPython releases at least. I seem to remember the plain wx
    > frontend also being flaky under this kind of 'abuse', but I
    > can't seem to get that to break now.

    > I also notice that you get a shear effect on some of the
    > resizes (where the plot is drawn as a parallelogram). That's
    > reproducible by shrinking the plot very small, but also
    > occasionally happens at other sizes. I can't be sure whether
    > the size/aspect ratio of the window causes that.

Thanks for the bug reports,

I thing the crash and the shear effect are both part of the same bug
that arose from a floating point error in converting figure units to
width and height. I believe this is a simple fix. I was able to
replicate both of the buggy behaviors on my winxp box, and the
following change fixed both. Perhaps you and Heiko can test on your
respective scripts and let me know.

On site-packages/matplotlib/backends/backend_wxagg.py, replace
FigureCanvasWXAgg.draw with

    def draw(self):
        """
        Render the figure using agg
        """
        DEBUG_MSG("draw()", 1, self)

        FigureCanvasAgg.draw(self)
        s = self.tostring_rgb()
        w = int(self.renderer.width)
        h = int(self.renderer.height)
        image = wxEmptyImage(w,h)
        image.SetData(s)
        self.bitmap = image.ConvertToBitmap()
        self.gui_repaint()

Let me know!

Know if I can just figure out why there is the irritating flicker on
resizes in win32....

JDH

John Hunter wrote:

Thanks for the bug reports,

I thing the crash and the shear effect are both part of the same bug
that arose from a floating point error in converting figure units to
width and height. I believe this is a simple fix. I was able to
replicate both of the buggy behaviors on my winxp box, and the
following change fixed both. Perhaps you and Heiko can test on your
respective scripts and let me know.

On site-packages/matplotlib/backends/backend_wxagg.py, replace
FigureCanvasWXAgg.draw with

   def draw(self):
       """
       Render the figure using agg
       """
       DEBUG_MSG("draw()", 1, self)

       FigureCanvasAgg.draw(self)
       s = self.tostring_rgb() w = int(self.renderer.width)
       h = int(self.renderer.height)
       image = wxEmptyImage(w,h)
       image.SetData(s)
       self.bitmap = image.ConvertToBitmap()
       self.gui_repaint()

Let me know!

Know if I can just figure out why there is the irritating flicker on
resizes in win32....

JDH

-------------------------------------------------------
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
Cheap Ink Cartridges: printer ink, printer cartridge, printer cartridges, inkjet cartridge, ink jet cartridges, ink cartridges, ink cartridge, inkjet cartridges, epson ink cartridge, epson ink cartridges
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
matplotlib-users List Signup and Options

Hello John,

I tested the fix and the problem seems to be gone. I will continue the testing and will let you know in case I will find anything else.

Thank you for your fast response and for the great library..

Heiko

Hi,

I thing the crash and the shear effect are both part of the same bug
that arose from a floating point error in converting figure units to
width and height. I believe this is a simple fix. I was able to
replicate both of the buggy behaviors on my winxp box, and the
following change fixed both. Perhaps you and Heiko can test on your
respective scripts and let me know.

I can confirm that this fix works for me too. Thanks, that's a big help!

> Know if I can just figure out why there is the irritating flicker on
> resizes in win32...

The flicker doesn't seem so bad to me, to be honest. It seemed worse because I was using embedding_in_wx4 (which has an extra EVT_PAINT redraw).

Mark