ApplyTamilReorder

シグネチャ

function ApplyTamilReorder(const Wide: UnicodeString): UnicodeString;

目的

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

対応範囲

  • Tamil は U+0B80-U+0BFF に対して script レコード taml を使用します。対応範囲は R2-R5 with Tamil split-matra handling and no Repha を含み、生成側の API 動作を維持します
  • ApplyIndicReorder dispatches to this helper when the active codepoint range matches U+0B80-U+0BFF

var
  Wide: UnicodeString;
begin
  // Input: KA (U+0B95) + O-matra (U+0BCA, split)
  Wide:= Doc.ApplyTamilReorder(#$0B95#$0BCA);
  // Wide is now: E (U+0BC6) + KA + AA (U+0BBE)  (canonical decomposition)
end;

関連項目

標準

  • Unicode 16.0 U+0B80-U+0BFF
  • ISO 32000-1 §9.10
  • OpenType Tamil shaping specification

バージョン履歴

  • v2.119.73 - HotPDF の Indic shaping バッチの一部として追加されました