Table of Contents

Enum PutTextFlags

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll
[Flags]
public enum PutTextFlags

Fields

AlignCenter = 1

Center the text at the origin (not implemented yet in OpenCV).

AlignLeft = 0

Put the text to the right from the origin.

AlignMask = AlignCenter | AlignRight

Alignment mask.

AlignRight = 2

Put the text to the left of the origin.

OriginBL = 32

Treat the target image as having a bottom-left origin.

OriginTL = 0

Treat the target image as having a top-left origin (default).

Wrap = 128

Wrap text to the next line if it does not fit.