ApplyGujaratiReorder
Firma
function ApplyGujaratiReorder(const Wide: UnicodeString): UnicodeString;
Propósito
Aplica el paso previo de reordenamiento Gujarati a Wide y devuelve un UnicodeString preparado para cmap y GSUB. El texto fuera de Gujarati se mantiene estable byte a byte, así que ustedes pueden procesar texto mixto sin cambiar segmentos no relacionados
Cobertura
- Gujarati usa el registro de escritura
gujrpara U+0A80-U+0AFF. La ruta documentada cubre R1-R5 with no split matras y conserva el comportamiento de API para el modelado del lado productor ApplyIndicReorderdispatches to this helper when the active codepoint range matches U+0A80-U+0AFF
Ejemplo
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;
Ver también
ApplyIndicReorder- coberturaGetGujaratiCategory- Consulta de categoría Gujarati
Estándares
- Unicode 16.0 U+0A80-U+0AFF
- ISO 32000-1 §9.10
- OpenType Gujarati shaping specification
Historial de versiones
- v2.119.72 - Introducido como parte del lote de modelado Indic de HotPDF