(cls, name, location)
| 80 | |
| 81 | @classmethod |
| 82 | def getImage(cls, name, location): |
| 83 | bmp = cls.getBitmap(name, location) |
| 84 | if bmp is not None: |
| 85 | return bmp.ConvertToImage() |
| 86 | else: |
| 87 | return None |
| 88 | |
| 89 | @classmethod |
| 90 | def loadBitmap(cls, name, location): |