(self, args)
| 482 | |
| 483 | |
| 484 | def start_image(self, args): |
| 485 | self.pack_slide('image',args) |
| 486 | sourceFilename = self.sourceFilename # XXX |
| 487 | filename = self._arg('image',args,'filename') |
| 488 | filename = os.path.join(os.path.dirname(sourceFilename), filename) |
| 489 | self._curImage = pythonpoint.PPImage() |
| 490 | self._curImage.filename = filename |
| 491 | self._curImage.width = self.ceval('image',args,'width') |
| 492 | self._curImage.height = self.ceval('image',args,'height') |
| 493 | |
| 494 | |
| 495 | def end_image(self): |
nothing calls this directly
no test coverage detected