|
THPDFPage.UnicodeTextOut
|
맨 위 이전 다음 |
|
Shows text represented by a Unicode string or buffer.
This procedure is retained for backward compatibility and shares the current TextOut font pipeline. Use it when existing code already passes WideString or UTF-16 buffers.
Delphi 구문: procedure UnicodeTextOut( X, Y: Single; Angle: Extended; Text: PWORD; TextLength: Integer ); overload; procedure UnicodeTextOut( X, Y: Single; Angle: Extended; Text: WideString ); overload;
Description: This procedure prints a text line represented by a Unicode buffer ( Text: PWORD, TextLength: Integer ) or Unicode string ( Text: WideString ) from point X, Y using orientation Angle in degrees.
Embedded Unicode font의 경우 HotPDF는 이제 font가 변경될 때 glyph state를 refresh하고 active Windows font에서 glyph ID를 resolve하며 generated PDF에 matching ToUnicode data를 씁니다. 이는 Calibri 같은 embedded font의 cross-viewer rendering을 향상합니다
Active font가 먼저
Tests\Delphi\FontTest provides a practical comparison sample for TextOut and embedded font validation.
Code Example
|