|
THPDFPage.UnicodeTextOut
|
Üst Önceki Sonraki |
|
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 syntax: 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
Gömülü Unicode yazı tipleri için HotPDF artık yazı tipi değiştiğinde glif durumunu yeniler, etkin Windows yazı tipinden glif kimliklerini çözer ve oluşturulan PDF için eşleşen ToUnicode verilerini yazar. Bu, Calibri gibi gömülü yazı tiplerinde görüntüleyiciler arası işlemeyi iyileştirir
Etkin yazı tipi önce
Tests\Delphi\FontTest provides a practical comparison sample for TextOut and embedded font validation
Code Example
|