OEDrawTextToCenter
OEDrawTextToCenter(image: OEImageBase, text: str, font: OEFont) -> None
Draws the given text to the center of the image.
See code snippet below and the corresponding image in Figure: Example of using the OEDrawTextToCenter function.
width, height = 100, 50
image = oedepict.OEImage(width, height)
oedepict.OEDrawTextToCenter(image, "center", oedepict.OEDefaultFont)
oedepict.OEDrawBorder(image, oedepict.OELightGreyPen)
oedepict.OEWriteImage("OEDrawTextToCenter.png", image)
Example of using the OEDrawTextToCenter function
See also
OEImageBase class
OEFont class
OEDrawBorderfunctionOEDrawTextfunction