MCPcopy Create free account
hub / github.com/Distrotech/reportlab / start_fixedimage

Method start_fixedimage

tools/pythonpoint/stdparser.py:533–543  ·  view source on GitHub ↗
(self, args)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 2

_argMethod · 0.95
cevalMethod · 0.95

Tested by

no test coverage detected