__init__ constructor
Leave feedback
On this page
Initializes a new instance of the PresentationWatermarkableImage class using specified image data.
def __init__(self, image_data):
...
| Parameter | Type | Description |
|---|---|---|
| image_data | list[int] |
The array of unsigned bytes from which to create the PresentationWatermarkableImage. |
import groupdocs.watermark.contents.presentation as gwc_ppt
with open("background.png", "rb") as f:
img = gwc_ppt.PresentationWatermarkableImage(f.read())
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.