2019-02-20 20:53:14 +01:00
|
|
|
from DisplayAdapter import DisplayAdapter
|
2019-04-29 18:14:25 +02:00
|
|
|
from Assets import path
|
2019-02-20 20:53:14 +01:00
|
|
|
|
|
|
|
class ImageFileAdapter (DisplayAdapter):
|
|
|
|
"""Saves design to an image file, can be used for debugging"""
|
|
|
|
def __init__ (self, file_path = ""):
|
2019-02-28 15:17:43 +01:00
|
|
|
super(ImageFileAdapter, self).__init__(384, 640)
|
2019-02-20 20:53:14 +01:00
|
|
|
self.file_path = file_path
|
2019-04-29 18:14:25 +02:00
|
|
|
if self.file_path == "":
|
|
|
|
self.file_path = path
|
2019-02-20 20:53:14 +01:00
|
|
|
|
|
|
|
def render (self, design):
|
2019-02-28 15:17:43 +01:00
|
|
|
design.get_image().save(self.file_path + 'design_exported.png')
|
2019-02-20 20:53:14 +01:00
|
|
|
|
|
|
|
def calibrate (self):
|
|
|
|
pass
|