ApplyTamilReorder
시그니처
function ApplyTamilReorder(const Wide: UnicodeString): UnicodeString;
목적
Wide에 Tamil 재정렬 사전 처리를 적용하고 cmap 및 GSUB에 사용할 수 있는 UnicodeString을 반환합니다. Tamil 외부 텍스트는 바이트 단위로 안정적으로 유지됩니다
범위
- Tamil는 U+0B80-U+0BFF에 script 레코드
taml를 사용합니다. 범위는R2-R5 with Tamil split-matra handling and no Repha를 포함하며 생산자 측 API 동작을 유지합니다 ApplyIndicReorderdispatches to this helper when the active codepoint range matches U+0B80-U+0BFF
예제
var
Wide: UnicodeString;
begin
// Input: KA (U+0B95) + O-matra (U+0BCA, split)
Wide:= Doc.ApplyTamilReorder(#$0B95#$0BCA);
// Wide is now: E (U+0BC6) + KA + AA (U+0BBE) (canonical decomposition)
end;
관련 항목
ApplyIndicReorder- 범위GetTamilCategory- Tamil category lookup
표준
- Unicode 16.0 U+0B80-U+0BFF
- ISO 32000-1 §9.10
- OpenType Tamil shaping specification
버전 기록
- v2.119.73 - HotPDF Indic 셰이핑 배치의 일부로 도입되었습니다