Encoding

TextDevice.Encoding property

الحصول على أو تعيين ترميز النص المستخرج.

public Encoding Encoding { get; set; }

أمثلة

يوضح المثال كيفية تمثيل النص المستخرج بترميز UTF-8.

Document doc = new Document(inFile);
string extractedText;

// إنشاء جهاز نصي
TextDevice device = new TextDevice(Encoding.UTF8);

// تحويل الصفحة وحفظ النص في الدفق
device.Process(doc.Pages[1], outFile);

// استخدام النص المستخرج
extractedText = File.ReadAllText(outFile, Encoding.UTF8);

أنظر أيضا