(self, name, stream)
| 52 | return |
| 53 | |
| 54 | def render_image(self, name, stream): |
| 55 | assert isinstance(self.cur_item, LTFigure) |
| 56 | item = LTImage(name, stream, |
| 57 | (self.cur_item.x0, self.cur_item.y0, |
| 58 | self.cur_item.x1, self.cur_item.y1)) |
| 59 | self.cur_item.add(item) |
| 60 | return |
| 61 | |
| 62 | def paint_path(self, gstate, stroke, fill, evenodd, path): |
| 63 | shape = ''.join(x[0] for x in path) |