ApplyMalayalamReorder

시그니처

function ApplyMalayalamReorder(const Wide: UnicodeString): UnicodeString;

목적

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

범위

  • Malayalam는 U+0D00-U+0D7F에 script 레코드 mlym를 사용합니다. 범위는 R1, R2, R4, R5, split matras, chillu letters, and DOT REPH를 포함하며 생산자 측 API 동작을 유지합니다
  • ApplyIndicReorder dispatches to this helper when the active codepoint range matches U+0D00-U+0D7F

예제

var
  Wide: UnicodeString;
begin
  // Input: KA (U+0D15) + O-matra (U+0D4A, split into pre + post)
  Wide:= Doc.ApplyMalayalamReorder(#$0D15#$0D4A);
  // Wide is now: E (U+0D46, pre) + KA + AA (U+0D3E, post)
end;

관련 항목

표준

  • Unicode 16.0 U+0D00-U+0D7F
  • ISO 32000-1 §9.10
  • OpenType Malayalam shaping specification

버전 기록

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