def load(self, fname): """ Loads ps image data from file. B{NOT} supported by this renderer module @param fname: The filename from which to load ps image data @type fname: string """ debugMsg("Called PsImage.load()") # this ability not handled by this renderer module unsupportedError("BASE") # do a check to see if the file exists fileCheck(fname) return
def load(self, fname): """ Loads pdf image data from file. B{NOT} supported by this renderer module @param fname: The filename from which to load pdf image data @type fname: string """ debugMsg("Called PdfImage.load()") # need to check that the file exists and is readable etc here # *before* we add to the evalString, better to get the feedback # now rather than at the end of the script # this ability not handled by this renderer module unsupportedError("BASE") # do a check to see if the file exists fileCheck(fname) return