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