ApplyTamilReorder

Signatur

function ApplyTamilReorder(const Wide: UnicodeString): UnicodeString;

Syfte

Tillämpar Tamil-omordningen på Wide och returnerar en UnicodeString klar för cmap och GSUB. Text utanför Tamil förblir byte-stabil

Täckning

  • Tamil använder scriptposten taml för U+0B80-U+0BFF. Täckningen omfattar R2-R5 with Tamil split-matra handling and no Repha och bevarar API-beteendet för producer-side shaping
  • ApplyIndicReorder dispatches to this helper when the active codepoint range matches U+0B80-U+0BFF

Exempel

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;

Se även

Standarder

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

Versionshistorik

  • v2.119.73 - Införd som del av HotPDF:s Indic shaping-batch