image_bytes property

Stroke.image_bytes property

Defines the image for a stroke image or pattern fill.

@property
def image_bytes(self) -> bytes:
    ...

Examples

Shows how to process shape stroke features.

doc = aw.Document(MY_DIR + "Shape stroke pattern border.docx")
shape = doc.get_child(aw.NodeType.SHAPE, 0, True).as_shape()
stroke = shape.stroke

# Strokes can have two colors, which are used to create a pattern defined by two-tone image data.
# Strokes with a single color do not use the Color2 property.
self.assertEqual(drawing.Color.from_argb(255, 128, 0, 0), stroke.color)
self.assertEqual(drawing.Color.from_argb(255, 255, 255, 0), stroke.color2)

self.assertIsNotNone(stroke.image_bytes)

with open(ARTIFACTS_DIR + "Drawing.stroke_pattern.png", "wb") as file:
    file.write(stroke.image_bytes)

See Also