zaz/doc/source/main/examples_draw.rst

28 lines
474 B
ReStructuredText

Examples for Draw
-----------------
Save image
^^^^^^^^^^
.. code-block:: python
def save_image():
# Target path
path = '/home/mau/Pictures'
# Open new hidden Draw doc
doc = app.docs.new('draw', {'Hidden': True})
# Paste image from clipboard and return
image = doc.paste()
# Save image
image.save(path)
# Close document
doc.close()
app.msgbox('Image saved')
return