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

関連項目