HotPDF Delphi PDF Component Developer Guide loslab Logo

 

THPDFPage.SetTextRenderingMode

THPDFPage

 

Top  Previous  Next

Determines text rendering mode.

 

TPDFTextRenderingMode = (trFill, trStroke, trFillThenStroke, trInvisible, trFillClipping, trStrokeClipping, trFillStrokeClipping, trClipping);

 

Delphi syntax:

procedure SetTextRenderingMode( Mode: TPDFTextRenderingMode );

 

C++ syntax:

void __fastcall SetTextRenderingMode ( TPDFTextRenderingMode Mode );

 

Description:

Determines whether showing text causes glyph outlines to be stroked, filled, used as a clipping boundary, or some combination of the three.

 

Code Example

program TextRender;
{$APPTYPE CONSOLE}
uses
    SysUtils, Graphics, Classes, HPDFDoc;
var
    HPDF: THotPDF;
begin
    HPDF := THotPDF.Create(nil);
    try
        HPDF.AutoLaunch := true;                                      // PDF file will be shown automatically
        HPDF.FileName := '.\TextRender.pdf';                          // Set PDF filename
        HPDF.BeginDoc;                                                // Create PDF file

        HPDF.CurrentPage.SetRGBStrokeColor( clRed );                  // Set stroke color
        HPDF.CurrentPage.SetRGBFillColor( clYellow );                 // Set fill color
        HPDF.CurrentPage.SetTextRenderingMode( trFillThenStroke );    // Set fill and stroke rendering mode 
        HPDF.CurrentPage.TextOut( 10, 10, 0, 'Fill and stroke text'); // Print text
        HPDF.EndDoc;                                                  // Close PDF file
    finally
        HPDF.Free;
    end;
end.

 

Value                Meaning


 

trFill

 

Fill text.

 

ft

 

trStroke

 

Stroke text.

 

st

 

trFillThenStroke

 

Fill, then stroke text.

 

fst

 

trInvisible

 

 

Neither .ll nor stroke text (invisible).

 

 

 

trFillClipping

 

Fill text and add to path for clipping.

 

ftp

 

trStrokeClipping

 

Stroke text and add to path for clipping.

 

stp

 

trFillStrokeClipping

 

Fill, then stroke text and add to path for clipping.

 

fasstx

 

trClipping

 

Add text to path for clipping.

 

str

 

 

Copyright©2007-2025 losLab.com