ApplyMalayalamReorder

シグネチャ

function ApplyMalayalamReorder(const Wide: UnicodeString): UnicodeString;

目的

Wide に Malayalam の並べ替え前処理を適用し、cmap と GSUB に渡せる UnicodeString を返します。Malayalam 以外のテキストはバイト単位で安定したままです

対応範囲

  • Malayalam は U+0D00-U+0D7F に対して script レコード mlym を使用します。対応範囲は 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 - HotPDF の Indic shaping バッチの一部として追加されました