ApplyMalayalamReorder

التوقيع

function ApplyMalayalamReorder(const Wide: UnicodeString): UnicodeString;

الغرض

يطبق مرور إعادة ترتيب Malayalam على Wide ويعيد UnicodeString جاهزًا لاستخدام cmap وGSUB. يبقى النص خارج Malayalam ثابتًا على مستوى البايت

التغطية

  • يستخدم Malayalam سجل script mlym للنطاق U+0D00-U+0D7F. تشمل التغطية R1, R2, R4, R5, split matras, chillu letters, and DOT REPH مع الحفاظ على سلوك API في جهة الإنشاء
  • ApplyIndicReorder dispatches to this helper when the active codepoint range matches U+0D00-U+0D7F

مثال

var
  Wide: UnicodeString;
begin
  // Input: KA (U+0D15) + O-matra (U+0D4A, split into pre + post)
  Wide:= Doc.ApplyMalayalamReorder(#$0D15#$0D4A);
  // Wide is now: E (U+0D46, pre) + KA + AA (U+0D3E, post)
end;

راجع أيضًا

المعايير

  • Unicode 16.0 U+0D00-U+0D7F
  • ISO 32000-1 §9.10
  • OpenType Malayalam shaping specification

سجل الإصدارات

  • v2.119.76 - أضيف كجزء من دفعة تشكيل Indic في HotPDF