| 531 | ## the graphics objects - go into either the current section |
| 532 | ## or the current slide. |
| 533 | def start_fixedimage(self, args): |
| 534 | sourceFilename = self.sourceFilename |
| 535 | filename = self._arg('image',args,'filename') |
| 536 | filename = os.path.join(os.path.dirname(sourceFilename), filename) |
| 537 | img = pythonpoint.PPFixedImage() |
| 538 | img.filename = filename |
| 539 | img.x = self.ceval('fixedimage',args,'x') |
| 540 | img.y = self.ceval('fixedimage',args,'y') |
| 541 | img.width = self.ceval('fixedimage',args,'width') |
| 542 | img.height = self.ceval('fixedimage',args,'height') |
| 543 | self._curFixedImage = img |
| 544 | |
| 545 | |
| 546 | def end_fixedimage(self): |