clip method

clip

Sets the current clipping path using the specified fill rule.

def clip(self, mode):
    ...
ParameterTypeDescription
modeaspose.svg.drawing.FillRuleThe fill rule to use for clipping.

clip

Sets the current clipping path using the specified path and fill rule.

def clip(self, path, mode):
    ...
ParameterTypeDescription
pathIPathThe path to use for clipping.
modeaspose.svg.drawing.FillRuleThe fill rule to use for clipping.

See Also