ApplyKannadaReorder

Signatuur

function ApplyKannadaReorder(const Wide: UnicodeString): UnicodeString;

Doel

Past de Kannada-herschikking toe op Wide en retourneert een UnicodeString die klaar is voor cmap en GSUB. Tekst buiten Kannada blijft byte-stabiel

Dekking

  • Kannada gebruikt scriptrecord knda voor U+0C80-U+0CFF. De dekking omvat R1, R3, R4, R5, and Kannada split-matra handling en behoudt het API-gedrag voor producer-side shaping
  • ApplyIndicReorder dispatches to this helper when the active codepoint range matches U+0C80-U+0CFF

Voorbeeld

var
  Wide: UnicodeString;
begin
  // Input: KA (U+0C95) + OO-matra (U+0CCB, three-part split)
  Wide:= Doc.ApplyKannadaReorder(#$0C95#$0CCB);
  // Wide is now: KA + E (U+0CC6, above) + UU (U+0CC2, post) + length-mark (U+0CD5, post)
end;

Zie ook

Standaarden

  • Unicode 16.0 U+0C80-U+0CFF
  • ISO 32000-1 ยง9.10
  • OpenType Kannada shaping specification

Versiegeschiedenis

  • v2.119.75 - Toegevoegd als onderdeel van de HotPDF Indic-vormingsbatch