We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea00bec commit 7845da3Copy full SHA for 7845da3
1 file changed
src/audian/audian.py
@@ -191,7 +191,9 @@ def screen_shot(self):
191
rel_path = os.fspath(rel_path)
192
try:
193
image.save(file_path)
194
- # See https://stackoverflow.com/questions/58399070/how-do-i-save-custom-information-to-a-png-image-file-in-python for saving metadata ton png file
+ # See
195
+ # https://stackoverflow.com/questions/58399070/how-do-i-save-custom-information-to-a-png-image-file-in-python for saving metadata ton png file
196
+ # https://stackoverflow.com/questions/47289884/how-to-convert-qimageqpixmap-to-pil-image-in-python-3 for buffered transfer from QImage to Pillow
197
print(f'saved screenshot to "{rel_path}"')
198
except PermissionError as e:
199
print(f'failed to save screenshot to "{rel_path}": permission denied')
0 commit comments