__init__ constructor

On this page

init

Initializes a new RotateAngleSearchCriteria with a starting angle and an ending angle.

def __init__(self, min_angle, max_angle):
    ...
Parameter Type Description
min_angle float The starting angle in degrees.
max_angle float The ending angle in degrees.

Example

from groupdocs.watermark.search import searchcriteria as gws_sc

# Search for watermarks rotated between 30 and 60 degrees
angle_criteria = gws_sc.RotateAngleSearchCriteria(30, 60)

See Also

On this page