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();
};
}
أنظر أيضا
- مساحة الاسم GroupDocs.Redaction.Redactions
- المجسم GroupDocs.Redaction