def select_output(self) -> None:
path = asksaveasfilename(title='Please select the path of the image to create.',
defaultextension='.png',
filetypes=[('PNG File', '*.png'), ('JPEG File', '*.jpg')])
if not path:
return None
self.file_output = path
self.speed_scale.state(['!disabled'])
self.btn_start['state'] = 'normal'
评论列表
文章目录