ApplyKannadaReorder

시그니처

function ApplyKannadaReorder(const Wide: UnicodeString): UnicodeString;

목적

Wide에 Kannada 재정렬 사전 처리를 적용하고 cmap 및 GSUB에 사용할 수 있는 UnicodeString을 반환합니다. Kannada 외부 텍스트는 바이트 단위로 안정적으로 유지됩니다

범위

  • Kannada는 U+0C80-U+0CFF에 script 레코드 knda를 사용합니다. 범위는 R1, R3, R4, R5, and Kannada split-matra handling를 포함하며 생산자 측 API 동작을 유지합니다
  • ApplyIndicReorder dispatches to this helper when the active codepoint range matches U+0C80-U+0CFF

예제

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;

관련 항목

표준

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

버전 기록

  • v2.119.75 - HotPDF Indic 셰이핑 배치의 일부로 도입되었습니다