ApplyKannadaReorder
Signatur
function ApplyKannadaReorder(const Wide: UnicodeString): UnicodeString;
Zweck
Wendet den Kannada-Reorder-Vorlauf auf Wide an und gibt einen für cmap und GSUB vorbereiteten UnicodeString zurück. Text ausserhalb von Kannada bleibt byte-stabil, sodass gemischte Läufe ohne Änderung fremder Abschnitte verarbeitet werden können
Abdeckung
- Kannada verwendet den Script-Eintrag
kndafür U+0C80-U+0CFF. Der dokumentierte Pfad deckt R1, R3, R4, R5, and Kannada split-matra handling ab und bewahrt das API-Verhalten für producerseitiges Shaping ApplyIndicReorderdispatches to this helper when the active codepoint range matches U+0C80-U+0CFF
Beispiel
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;
Siehe auch
ApplyIndicReorder- AbdeckungGetKannadaCategory- Kannada-Kategorielookup
Standards
- Unicode 16.0 U+0C80-U+0CFF
- ISO 32000-1 §9.10
- OpenType Kannada shaping specification
Versionsverlauf
- v2.119.75 - Eingeführt als Teil des HotPDF-Indic-Shaping-Batches