ImageAreaRedaction

ImageAreaRedaction class

이미지 문서의 지정된 영역에 컬러 사각형을 배치하는 교정을 나타냅니다.

public class ImageAreaRedaction : Redaction

생성자

이름 설명
ImageAreaRedaction(Point, RegionReplacementOptions) 특정 영역 크기를 수정하기 위해 ImageAreaRedaction 클래스의 새 인스턴스를 초기화합니다.

속성

이름 설명
override Description { get; } 교정 및 해당 매개 변수를 설명하는 문자열을 반환합니다.
Options { get; } 가져오기RegionReplacementOptions색상 및 영역 매개변수가 있는 옵션.
TopLeft { get; } 제거할 영역의 왼쪽 상단 위치를 가져옵니다

행동 양식

이름 설명
override ApplyTo(DocumentFormatInstance) 지정된 형식 인스턴스에 교정을 적용합니다.

비고

더 알아보기

다음 예제에서는 이미지 내의 영역을 단색 사각형으로 바꾸는 방법을 보여줍니다.

    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();
       };
    } 

또한보십시오