(self, filename)
| 762 | |
| 763 | #: Return coordinates of opened circle (eg (x, y)) |
| 764 | def decrypt_from_file(self, filename): |
| 765 | #: Can be many different formats. |
| 766 | coords = self.decrypt(Image.open(filename)) |
| 767 | self.log_info(_("Coords: %s") % coords) |
| 768 | |
| 769 | |
| 770 | # DEBUG |