ContentAwareFillWatermarkOptions Klasse

Summary: The common Content Aware Fill Algorithm options.

Module: aspose.imaging.watermark.options

Full Name: aspose.imaging.watermark.options.ContentAwareFillWatermarkOptions

Inheritance: WatermarkOptions

Constructors

NameBeschreibung
ContentAwareFillWatermarkOptions(mask)Initialisiert eine neue Instanz der ContentAwareFillWatermarkOptions Klasse.
ContentAwareFillWatermarkOptions(mask)Initialisiert eine neue Instanz der ContentAwareFillWatermarkOptions Klasse.

Properties

NameTypeAccessBeschreibung
graphics_path_maskGraphicsPathr/wLiest oder setzt die Maske.
interest_areaRectangler/wLiest oder setzt den Bereich, aus dem Patches entnommen werden.
maskSystem.Collections.Generic.IEnumerable`1[[Aspose.Imaging.Point]]r/wLiest oder setzt die Maske.
max_painting_attemptsintr/wLiest oder setzt die maximale Anzahl von Malversuchen.
Der Algorithmus wählt die beste Variante.
patch_sizeSystem.Byter/wLiest oder setzt die Patch-Größe (sollte ungerade sein).

Constructor: ContentAwareFillWatermarkOptions(mask)

 ContentAwareFillWatermarkOptions(mask) 

Initialisiert eine neue Instanz der ContentAwareFillWatermarkOptions Klasse.

Parameters:

ParameterTypBeschreibung
maskPoint[]Die Maske für den unbekannten Bereich.

Constructor: ContentAwareFillWatermarkOptions(mask)

 ContentAwareFillWatermarkOptions(mask) 

Initialisiert eine neue Instanz der ContentAwareFillWatermarkOptions Klasse.

Parameters:

ParameterTypBeschreibung
maskGraphicsPathDie Maske für den unbekannten Bereich.

Property: max_painting_attempts

Liest oder setzt die maximale Anzahl von Malversuchen.
Der Algorithmus wählt die beste Variante.

See also:

Example # 1: The example shows how to remove any object from the image using Graphics Path…

Examples

The example shows how to remove any object from the image using Graphics Path with Content Aware fill algorithm.

from aspose.imaging import Image, Figure, GraphicsPath, RectangleF
from aspose.imaging.shapes import EllipseShape
from aspose.imaging.watermark import WatermarkRemover
from aspose.imaging.watermark.options import ContentAwareFillWatermarkOptions
from aspose.imaging.fileformats.png import PngImage
import aspose.pycore import as_of

image_file_path = "ball.png"; 
with Image.load(image_file_path) as image:
	pngImage = as_of(image, PngImage)
	mask = GraphicsPath()
	firstFigure = Figure()
	firstFigure.add_shape(EllipseShape(RectangleF(350, 170, 570 - 350, 400 - 170)))
	mask.add_figure(firstFigure)

	options = ContentAwareFillWatermarkOptions(mask)
	options.max_painting_attempts = 4
	with WatermarkRemover.paint_over(pngImage, options) as result:
		result.save(outputPath)