--- backend_agg.py 2006-04-07 22:51:38.000000000 +1000 +++ new_backend_agg.py 2006-04-07 23:04:00.000000000 +1000 @@ -155,14 +155,14 @@ gcEdge, rgbFace, x, y, width/2, height/2) # ellipse takes radius - def _draw_image(self, x, y, im): + def _draw_image(self, x, y, im, bbox): """ Draw the Image instance into the current axes; x, y is the upper left hand corner of the image """ if __debug__: verbose.report('RendererAgg.draw_image', 'debug-annoying') #self._renderer.draw_image(int(x), int(self.height-y), im) - self._renderer.draw_image(int(x), int(y), im) + self._renderer.draw_image(int(x), int(y), im, bbox) def draw_line(self, gc, x1, y1, x2, y2): """