# Load a Word document doc = aw.Document("Document.docx"); # Specify watermark options for image options = aw.ImageWatermarkOptions() options.scale = 3 options.is_washout = False # Provide the image path doc.watermark.set_image("logo.png", options); # Save the document doc.save("AddImageWatermark_out.docx");