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