RegionReplacementOptions
내용물
[
숨다
]
RegionReplacementOptions class
이미지 영역 교체를 위한 색상 및 영역 매개변수를 나타냅니다. 보다ImageAreaRedaction
.
public class RegionReplacementOptions
생성자
이름 | 설명 |
---|---|
RegionReplacementOptions(Color, Size) | RegionReplacementOptions 클래스의 새 인스턴스를 초기화합니다. |
RegionReplacementOptions(Color, Font, string) | 지정된 텍스트와 크기가 일치하는 RegionReplacementOptions 클래스의 새 인스턴스를 초기화합니다. |
속성
이름 | 설명 |
---|---|
FillColor { get; set; } | 교정된 영역을 채울 색상을 가져오거나 설정합니다. |
Size { get; set; } | 및 높이가 있는 사각형을 가져오거나 설정합니다. |
비고
더 알아보기
- 이미지 교정에 대한 자세한 내용: 이미지 편집
예
다음 예제에서는 이미지 내의 영역을 단색 사각형으로 바꾸는 방법을 보여줍니다.
using (Redactor redactor = new Redactor("D:\\test.jpg"))
{
System.Drawing.Point samplePoint = new System.Drawing.Point(516, 311);
System.Drawing.Size sampleSize = new System.Drawing.Size(170, 35);
RedactorChangeLog result = redactor.Apply(new ImageAreaRedaction(samplePoint,
new RegionReplacementOptions(System.Drawing.Color.Blue, sampleSize)));
if (result.Status != RedactionStatus.Failed)
{
redactor.Save();
};
}