ApplyKannadaReorder

Firma

function ApplyKannadaReorder(const Wide: UnicodeString): UnicodeString;

Scopo

Applica il pre-pass di riordino Kannada a Wide e restituisce un UnicodeString pronto per cmap e GSUB. Il testo fuori da Kannada resta stabile byte per byte, quindi i chiamanti possono gestire testo misto senza cambiare segmenti non correlati

Copertura

  • Kannada usa il record script knda per U+0C80-U+0CFF. Il percorso documentato copre R1, R3, R4, R5, and Kannada split-matra handling e conserva il comportamento API per lo shaping lato producer
  • ApplyIndicReorder dispatches to this helper when the active codepoint range matches U+0C80-U+0CFF

Esempio

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;

Vedere anche

Standard

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

Cronologia versioni

  • v2.119.75 - Introdotto come parte del batch di shaping Indic di HotPDF