ApplyGujaratiReorder

시그니처

function ApplyGujaratiReorder(const Wide: UnicodeString): UnicodeString;

목적

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

범위

  • Gujarati는 U+0A80-U+0AFF에 script 레코드 gujr를 사용합니다. 범위는 R1-R5 with no split matras를 포함하며 생산자 측 API 동작을 유지합니다
  • ApplyIndicReorder dispatches to this helper when the active codepoint range matches U+0A80-U+0AFF

예제

var
  Wide: UnicodeString;
begin
  // Input: KA + AA(post) + U(below) + E(above) + I(pre)
  Wide:= Doc.ApplyGujaratiReorder(#$0A95#$0ABE#$0AC1#$0AC7#$0ABF);
  // Wide is now: I + KA + E + U + AA  (canonical 5-buffer order)
end;

관련 항목

표준

  • Unicode 16.0 U+0A80-U+0AFF
  • ISO 32000-1 §9.10
  • OpenType Gujarati shaping specification

버전 기록

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