Make an HTML image tag by calling the builder
(self, path, p=None, alpha=1, pageNumber=None, w=None, h=None)
| 204 | return cachedFilePath |
| 205 | |
| 206 | def image(self, path, p=None, alpha=1, pageNumber=None, w=None, h=None): |
| 207 | """Make an HTML image tag by calling the builder""" |
| 208 | self.b.img(path=path) # TODO: add other attributes here, width=w, height=h) |
| 209 | |
| 210 | def saveImage(self, path): |
| 211 | """Ignore for now in this context.""" |